using System; namespace System.Security.AccessControl { /// Specifies how Access Control Entries (ACEs) are propagated to child objects. These flags are significant only if inheritance flags are present. // Token: 0x020004D6 RID: 1238 [Flags] public enum PropagationFlags { /// Specifies that no inheritance flags are set. // Token: 0x04001221 RID: 4641 None = 0, /// Specifies that the ACE is not propagated to child objects. // Token: 0x04001222 RID: 4642 NoPropagateInherit = 1, /// Specifies that the ACE is propagated only to child objects. This includes both container and leaf child objects. // Token: 0x04001223 RID: 4643 InheritOnly = 2 } }