using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Defines the interface for extending properties to other components in a container.
// Token: 0x02000138 RID: 312
[Token(Token = "0x2000138")]
public interface IExtenderProvider
{
/// Specifies whether this object can provide its extender properties to the specified object.
/// The to receive the extender properties.
///
/// if this object can provide extender properties to the specified object; otherwise, .
// Token: 0x060007CD RID: 1997
[Token(Token = "0x60007CD")]
[Address(Slot = "0")]
bool CanExtend(object extendee);
}
}