42 lines
1.8 KiB
C#
42 lines
1.8 KiB
C#
using System;
|
|
|
|
namespace System.Security.AccessControl
|
|
{
|
|
/// <summary>Specifies the inheritance and auditing behavior of an access control entry (ACE).</summary>
|
|
// Token: 0x020004A7 RID: 1191
|
|
[Flags]
|
|
public enum AceFlags : byte
|
|
{
|
|
/// <summary>No ACE flags are set.</summary>
|
|
// Token: 0x04001170 RID: 4464
|
|
None = 0,
|
|
/// <summary>The access mask is propagated onto child leaf objects.</summary>
|
|
// Token: 0x04001171 RID: 4465
|
|
ObjectInherit = 1,
|
|
/// <summary>The access mask is propagated to child container objects.</summary>
|
|
// Token: 0x04001172 RID: 4466
|
|
ContainerInherit = 2,
|
|
/// <summary>The access checks do not apply to the object; they only apply to its children.</summary>
|
|
// Token: 0x04001173 RID: 4467
|
|
NoPropagateInherit = 4,
|
|
/// <summary>The access mask is propagated only to child objects. This includes both container and leaf child objects.</summary>
|
|
// Token: 0x04001174 RID: 4468
|
|
InheritOnly = 8,
|
|
/// <summary>A logical OR of <see cref="F:System.Security.AccessControl.AceFlags.ObjectInherit" />, <see cref="F:System.Security.AccessControl.AceFlags.ContainerInherit" />, <see cref="F:System.Security.AccessControl.AceFlags.NoPropagateInherit" />, and <see cref="F:System.Security.AccessControl.AceFlags.InheritOnly" />.</summary>
|
|
// Token: 0x04001175 RID: 4469
|
|
InheritanceFlags = 15,
|
|
/// <summary>An ACE is inherited from a parent container rather than being explicitly set for an object.</summary>
|
|
// Token: 0x04001176 RID: 4470
|
|
Inherited = 16,
|
|
/// <summary>Successful access attempts are audited.</summary>
|
|
// Token: 0x04001177 RID: 4471
|
|
SuccessfulAccess = 64,
|
|
/// <summary>Failed access attempts are audited.</summary>
|
|
// Token: 0x04001178 RID: 4472
|
|
FailedAccess = 128,
|
|
/// <summary>All access attempts are audited.</summary>
|
|
// Token: 0x04001179 RID: 4473
|
|
AuditFlags = 192
|
|
}
|
|
}
|