using System; namespace System.Security.AccessControl { /// Inheritance flags specify the semantics of inheritance for access control entries (ACEs). // Token: 0x020004C9 RID: 1225 [Flags] public enum InheritanceFlags { /// The ACE is not inherited by child objects. // Token: 0x04001200 RID: 4608 None = 0, /// The ACE is inherited by child container objects. // Token: 0x04001201 RID: 4609 ContainerInherit = 1, /// The ACE is inherited by child leaf objects. // Token: 0x04001202 RID: 4610 ObjectInherit = 2 } }