Files
Dec2017-Script-Dump/mscorlib/System/Runtime/Remoting/Contexts/IDynamicProperty.cs
T
2026-06-04 11:42:34 +02:00

21 lines
969 B
C#

using System;
using System.Runtime.InteropServices;
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: 0x020003C9 RID: 969
[ComVisible(true)]
public interface IDynamicProperty
{
/// <summary>Gets the name of the dynamic property.</summary>
/// <returns>The name of the dynamic property.</returns>
/// <PermissionSet>
/// <IPermission class="System.Security.Permissions.SecurityPermission, mscorlib, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" version="1" Flags="Infrastructure" />
/// </PermissionSet>
// Token: 0x17000724 RID: 1828
// (get) Token: 0x06002636 RID: 9782
string Name { get; }
}
}