Files
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

26 lines
880 B
C#

using System;
using System.Runtime.InteropServices;
using Cpp2IlInjected;
namespace System.Runtime.Remoting.Contexts
{
/// <summary>Indicates that the implementing property should be registered at runtime through the <see cref="M:System.Runtime.Remoting.Contexts.Context.RegisterDynamicProperty(System.Runtime.Remoting.Contexts.IDynamicProperty,System.ContextBoundObject,System.Runtime.Remoting.Contexts.Context)" /> method.</summary>
// Token: 0x020004F7 RID: 1271
[Token(Token = "0x20004F7")]
[ComVisible(true)]
public interface IDynamicProperty
{
/// <summary>Gets the name of the dynamic property.</summary>
/// <returns>The name of the dynamic property.</returns>
// Token: 0x1700060E RID: 1550
// (get) Token: 0x06002A5F RID: 10847
[Token(Token = "0x1700060E")]
string Name
{
[Token(Token = "0x6002A5F")]
[Address(Slot = "0")]
get;
}
}
}