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