using System;
using Cpp2IlInjected;
namespace System.ComponentModel
{
/// Defines the interface for extending properties to other components in a container.
// Token: 0x02000134 RID: 308
[Token(Token = "0x2000134")]
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: 0x060007B7 RID: 1975
[Token(Token = "0x60007B7")]
[Address(Slot = "0")]
bool CanExtend(object extendee);
}
}