mscorlib(4.0.0.0) API with additions
InheritanceFlags.cs
2 {
4  [Flags]
5  public enum InheritanceFlags
6  {
8  None = 0x0,
10  ContainerInherit = 0x1,
12  ObjectInherit = 0x2
13  }
14 }
The access mask is propagated onto child leaf objects.
The access mask is propagated to child container objects.
InheritanceFlags
Inheritance flags specify the semantics of inheritance for access control entries (ACEs).