This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,20 @@
using System;
namespace System.Security.AccessControl
{
/// <summary>Specifies the presence of object types for Access Control Entries (ACEs).</summary>
// Token: 0x020004D2 RID: 1234
[Flags]
public enum ObjectAceFlags
{
/// <summary>No object types are present.</summary>
// Token: 0x04001215 RID: 4629
None = 0,
/// <summary>The type of object that is associated with the ACE is present.</summary>
// Token: 0x04001216 RID: 4630
ObjectAceTypePresent = 1,
/// <summary>The type of object that can inherit the ACE.</summary>
// Token: 0x04001217 RID: 4631
InheritedObjectAceTypePresent = 2
}
}