This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
@@ -0,0 +1,20 @@
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);
}
}