Files
2026-04-10 22:50:51 +02:00

21 lines
800 B
C#

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