using System; namespace System.Security.AccessControl { /// Specifies which sections of a security descriptor to save or load. // Token: 0x020004A3 RID: 1187 [Flags] public enum AccessControlSections { /// No sections. // Token: 0x04001163 RID: 4451 None = 0, /// The system access control list (SACL). // Token: 0x04001164 RID: 4452 Audit = 1, /// The discretionary access control list (DACL). // Token: 0x04001165 RID: 4453 Access = 2, /// The owner. // Token: 0x04001166 RID: 4454 Owner = 4, /// The primary group. // Token: 0x04001167 RID: 4455 Group = 8, /// The entire security descriptor. // Token: 0x04001168 RID: 4456 All = 15 } }