using System; namespace System.Security.AccessControl { /// Specifies the conditions for auditing attempts to access a securable object. // Token: 0x020004AA RID: 1194 [Flags] public enum AuditFlags { /// No access attempts are to be audited. // Token: 0x04001193 RID: 4499 None = 0, /// Successful access attempts are to be audited. // Token: 0x04001194 RID: 4500 Success = 1, /// Failed access attempts are to be audited. // Token: 0x04001195 RID: 4501 Failure = 2 } }