<PackageReference Include="System.Security.AccessControl" Version="6.0.0" />

CommonAcl

public abstract class CommonAcl : GenericAcl
Represents an access control list (ACL) and is the base class for the DiscretionaryAcl and SystemAcl classes.
using System.Runtime.CompilerServices; using System.Security.Principal; namespace System.Security.AccessControl { [System.Runtime.CompilerServices.NullableContext(1)] [System.Runtime.CompilerServices.Nullable(0)] public abstract class CommonAcl : GenericAcl { public sealed override int BinaryLength { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_AccessControl); } } public sealed override int Count { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_AccessControl); } } public bool IsCanonical { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_AccessControl); } } public bool IsContainer { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_AccessControl); } } public bool IsDS { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_AccessControl); } } public sealed override GenericAce this[int index] { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_AccessControl); } set { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_AccessControl); } } public sealed override byte Revision { get { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_AccessControl); } } internal CommonAcl() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_AccessControl); } public sealed override void GetBinaryForm(byte[] binaryForm, int offset) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_AccessControl); } public void Purge(SecurityIdentifier sid) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_AccessControl); } public void RemoveInheritedAces() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_AccessControl); } } }