Files
27Aug2021-Cpp2IL-Dump/System/ComponentModel/IExtenderProvider.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +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: 0x02000134 RID: 308
[Token(Token = "0x2000134")]
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: 0x060007B7 RID: 1975
[Token(Token = "0x60007B7")]
[Address(Slot = "0")]
bool CanExtend(object extendee);
}
}