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

33 lines
1.2 KiB
C#

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