AuditRule
using System.Security.Principal;
namespace System.Security.AccessControl
{
public abstract class AuditRule : AuthorizationRule
{
public AuditFlags AuditFlags {
get {
throw new PlatformNotSupportedException();
}
}
protected AuditRule(IdentityReference identity, int accessMask, bool isInherited, InheritanceFlags inheritanceFlags, PropagationFlags propagationFlags, AuditFlags auditFlags)
: base(null, 0, false, InheritanceFlags.None, PropagationFlags.None)
{
throw new PlatformNotSupportedException();
}
}
}