21 lines
619 B
C#
21 lines
619 B
C#
using System;
|
|
|
|
namespace System.Security.AccessControl
|
|
{
|
|
/// <summary>Inheritance flags specify the semantics of inheritance for access control entries (ACEs).</summary>
|
|
// Token: 0x020004C9 RID: 1225
|
|
[Flags]
|
|
public enum InheritanceFlags
|
|
{
|
|
/// <summary>The ACE is not inherited by child objects.</summary>
|
|
// Token: 0x04001200 RID: 4608
|
|
None = 0,
|
|
/// <summary>The ACE is inherited by child container objects.</summary>
|
|
// Token: 0x04001201 RID: 4609
|
|
ContainerInherit = 1,
|
|
/// <summary>The ACE is inherited by child leaf objects.</summary>
|
|
// Token: 0x04001202 RID: 4610
|
|
ObjectInherit = 2
|
|
}
|
|
}
|