using System; namespace System.Security.AccessControl { /// Specifies the presence of object types for Access Control Entries (ACEs). // Token: 0x020004D2 RID: 1234 [Flags] public enum ObjectAceFlags { /// No object types are present. // Token: 0x04001215 RID: 4629 None = 0, /// The type of object that is associated with the ACE is present. // Token: 0x04001216 RID: 4630 ObjectAceTypePresent = 1, /// The type of object that can inherit the ACE. // Token: 0x04001217 RID: 4631 InheritedObjectAceTypePresent = 2 } }