PropagationFlags
Specifies how Access Control Entries (ACEs) are propagated to child objects. These flags are significant only if inheritance flags are present.
namespace System.Security.AccessControl
{
[Flags]
public enum PropagationFlags
{
None = 0,
NoPropagateInherit = 1,
InheritOnly = 2
}
}