<PackageReference Include="System.Security.AccessControl" Version="5.0.0-preview.8.20407.11" />

AuditRule

public abstract class AuditRule : AuthorizationRule
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(); } } }