using System;
namespace System.Security.AccessControl
{
/// Specifies the access control rights that can be applied to named system event objects.
// Token: 0x020004BF RID: 1215
[Flags]
public enum EventWaitHandleRights
{
/// The right to set or reset the signaled state of a named event.
// Token: 0x040011D7 RID: 4567
Modify = 2,
/// The right to delete a named event.
// Token: 0x040011D8 RID: 4568
Delete = 65536,
/// The right to open and copy the access rules and audit rules for a named event.
// Token: 0x040011D9 RID: 4569
ReadPermissions = 131072,
/// The right to change the security and audit rules associated with a named event.
// Token: 0x040011DA RID: 4570
ChangePermissions = 262144,
/// The right to change the owner of a named event.
// Token: 0x040011DB RID: 4571
TakeOwnership = 524288,
/// The right to wait on a named event.
// Token: 0x040011DC RID: 4572
Synchronize = 1048576,
/// The right to exert full control over a named event, and to modify its access rules and audit rules.
// Token: 0x040011DD RID: 4573
FullControl = 2031619
}
}