InheritanceFlags
Inheritance flags specify the semantics of inheritance for access control entries (ACEs).
namespace System.Security.AccessControl
{
[Flags]
public enum InheritanceFlags
{
None = 0,
ContainerInherit = 1,
ObjectInherit = 2
}
}