//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.ComponentModel {
using System.Diagnostics;
using System;
///
///
/// Defines the interface
/// for extending properties to other components in a container.
///
///
public interface IExtenderProvider {
///
///
/// Specifies
/// whether this object can provide its extender properties to
/// the specified object.
///
///
bool CanExtend(object extendee);
}
}