e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
32 lines
969 B
C#
32 lines
969 B
C#
//------------------------------------------------------------------------------
|
|
// <copyright file="IExtenderProvider.cs" company="Microsoft">
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
// </copyright>
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.ComponentModel {
|
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
using System;
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Defines the interface
|
|
/// for extending properties to other components in a container.
|
|
/// </para>
|
|
/// </devdoc>
|
|
public interface IExtenderProvider {
|
|
|
|
/// <devdoc>
|
|
/// <para>
|
|
/// Specifies
|
|
/// whether this object can provide its extender properties to
|
|
/// the specified object.
|
|
/// </para>
|
|
/// </devdoc>
|
|
bool CanExtend(object extendee);
|
|
}
|
|
}
|