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