using System; namespace System.Security.AccessControl { /// Specifies the section of a security descriptor to be queried or set. // Token: 0x020004DF RID: 1247 [Flags] public enum SecurityInfos { /// Specifies the owner identifier. // Token: 0x04001249 RID: 4681 Owner = 1, /// Specifies the primary group identifier. // Token: 0x0400124A RID: 4682 Group = 2, /// Specifies the discretionary access control list (DACL). // Token: 0x0400124B RID: 4683 DiscretionaryAcl = 4, /// Specifies the system access control list (SACL). // Token: 0x0400124C RID: 4684 SystemAcl = 8 } }