This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,19 @@
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
}
}