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