Files
Aug2021-Cpp2IL-Dump/mscorlib/System/Runtime/Remoting/Contexts/IDynamicProperty.cs
T
2026-04-10 22:50:51 +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: 0x020004DB RID: 1243
[Token(Token = "0x20004DB")]
[ComVisible(true)]
public interface IDynamicProperty
{
/// <summary>Gets the name of the dynamic property.</summary>
/// <returns>The name of the dynamic property.</returns>
// Token: 0x17000596 RID: 1430
// (get) Token: 0x06002852 RID: 10322
[Token(Token = "0x17000596")]
string Name
{
[Token(Token = "0x6002852")]
[Address(Slot = "0")]
get;
}
}
}