Files
2026-06-04 11:42:34 +02:00

20 lines
570 B
C#

using System;
using System.Runtime.InteropServices;
namespace System.Security.Permissions
{
/// <summary>Specifies whether a permission should have all or no access to resources at creation.</summary>
// Token: 0x0200055B RID: 1371
[ComVisible(true)]
[Serializable]
public enum PermissionState
{
/// <summary>Full access to the resource protected by the permission.</summary>
// Token: 0x04001494 RID: 5268
Unrestricted = 1,
/// <summary>No access to the resource protected by the permission.</summary>
// Token: 0x04001495 RID: 5269
None = 0
}
}