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