ControlFlags
namespace System.Security.AccessControl
{
[Flags]
public enum ControlFlags
{
DiscretionaryAclAutoInherited = 1024,
DiscretionaryAclAutoInheritRequired = 256,
DiscretionaryAclDefaulted = 8,
DiscretionaryAclPresent = 4,
DiscretionaryAclProtected = 4096,
DiscretionaryAclUntrusted = 64,
GroupDefaulted = 2,
None = 0,
OwnerDefaulted = 1,
RMControlValid = 16384,
SelfRelative = 32768,
ServerSecurity = 128,
SystemAclAutoInherited = 2048,
SystemAclAutoInheritRequired = 512,
SystemAclDefaulted = 32,
SystemAclPresent = 16,
SystemAclProtected = 8192
}
}