using System; namespace System.Security.AccessControl { /// Specifies the access control rights that can be applied to named system mutex objects. // Token: 0x020004CD RID: 1229 [Flags] public enum MutexRights { /// The right to release a named mutex. // Token: 0x04001208 RID: 4616 Modify = 1, /// The right to delete a named mutex. // Token: 0x04001209 RID: 4617 Delete = 65536, /// The right to open and copy the access rules and audit rules for a named mutex. // Token: 0x0400120A RID: 4618 ReadPermissions = 131072, /// The right to change the security and audit rules associated with a named mutex. // Token: 0x0400120B RID: 4619 ChangePermissions = 262144, /// The right to change the owner of a named mutex. // Token: 0x0400120C RID: 4620 TakeOwnership = 524288, /// The right to wait on a named mutex. // Token: 0x0400120D RID: 4621 Synchronize = 1048576, /// The right to exert full control over a named mutex, and to modify its access rules and audit rules. // Token: 0x0400120E RID: 4622 FullControl = 2031617 } }