scripts
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user