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