RawAcl
namespace System.Security.AccessControl
{
public sealed class RawAcl : GenericAcl
{
public override int BinaryLength {
get {
throw new PlatformNotSupportedException();
}
}
public override int Count {
get {
throw new PlatformNotSupportedException();
}
}
public override GenericAce this[int index] {
get {
throw new PlatformNotSupportedException();
}
set {
throw new PlatformNotSupportedException();
}
}
public override byte Revision {
get {
throw new PlatformNotSupportedException();
}
}
public RawAcl(byte revision, int capacity)
{
throw new PlatformNotSupportedException();
}
public RawAcl(byte[] binaryForm, int offset)
{
throw new PlatformNotSupportedException();
}
public override void GetBinaryForm(byte[] binaryForm, int offset)
{
throw new PlatformNotSupportedException();
}
public void InsertAce(int index, GenericAce ace)
{
throw new PlatformNotSupportedException();
}
public void RemoveAce(int index)
{
throw new PlatformNotSupportedException();
}
}
}