SecurityIdentifier
namespace System.Security.Principal
{
public sealed class SecurityIdentifier : IdentityReference, IComparable<SecurityIdentifier>
{
public static readonly int MaxBinaryLength;
public static readonly int MinBinaryLength;
public SecurityIdentifier AccountDomainSid {
get {
throw new PlatformNotSupportedException();
}
}
public int BinaryLength {
get {
throw new PlatformNotSupportedException();
}
}
public override string Value {
get {
throw new PlatformNotSupportedException();
}
}
public SecurityIdentifier(byte[] binaryForm, int offset)
{
throw new PlatformNotSupportedException();
}
public SecurityIdentifier(IntPtr binaryForm)
{
throw new PlatformNotSupportedException();
}
public SecurityIdentifier(WellKnownSidType sidType, SecurityIdentifier domainSid)
{
throw new PlatformNotSupportedException();
}
public SecurityIdentifier(string sddlForm)
{
throw new PlatformNotSupportedException();
}
public int CompareTo(SecurityIdentifier sid)
{
throw new PlatformNotSupportedException();
}
public override bool Equals(object o)
{
throw new PlatformNotSupportedException();
}
public bool Equals(SecurityIdentifier sid)
{
throw new PlatformNotSupportedException();
}
public void GetBinaryForm(byte[] binaryForm, int offset)
{
throw new PlatformNotSupportedException();
}
public override int GetHashCode()
{
throw new PlatformNotSupportedException();
}
public bool IsAccountSid()
{
throw new PlatformNotSupportedException();
}
public bool IsEqualDomainSid(SecurityIdentifier sid)
{
throw new PlatformNotSupportedException();
}
public override bool IsValidTargetType(Type targetType)
{
throw new PlatformNotSupportedException();
}
public bool IsWellKnown(WellKnownSidType type)
{
throw new PlatformNotSupportedException();
}
public static bool operator ==(SecurityIdentifier left, SecurityIdentifier right)
{
throw new PlatformNotSupportedException();
}
public static bool operator !=(SecurityIdentifier left, SecurityIdentifier right)
{
throw new PlatformNotSupportedException();
}
public override string ToString()
{
throw new PlatformNotSupportedException();
}
public override IdentityReference Translate(Type targetType)
{
throw new PlatformNotSupportedException();
}
}
}