Files
2026-06-04 11:42:34 +02:00

21 lines
757 B
C#

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