21 lines
622 B
C#
21 lines
622 B
C#
using System;
|
|
|
|
namespace System.Security.AccessControl
|
|
{
|
|
/// <summary>Specifies the presence of object types for Access Control Entries (ACEs).</summary>
|
|
// Token: 0x020004D2 RID: 1234
|
|
[Flags]
|
|
public enum ObjectAceFlags
|
|
{
|
|
/// <summary>No object types are present.</summary>
|
|
// Token: 0x04001215 RID: 4629
|
|
None = 0,
|
|
/// <summary>The type of object that is associated with the ACE is present.</summary>
|
|
// Token: 0x04001216 RID: 4630
|
|
ObjectAceTypePresent = 1,
|
|
/// <summary>The type of object that can inherit the ACE.</summary>
|
|
// Token: 0x04001217 RID: 4631
|
|
InheritedObjectAceTypePresent = 2
|
|
}
|
|
}
|