System.Security.Principal.IdentityReference
Represents an identity and is the base class for the NTAccount and SecurityIdentifier classes. This class does not provide a public constructor, and therefore cannot be inherited.
namespace System.Security.Principal
{
public abstract class IdentityReference
{
public abstract string Value { get; }
public abstract bool IsValidTargetType(Type targetType);
public static bool operator ==(IdentityReference left, IdentityReference right);
public static bool operator !=(IdentityReference left, IdentityReference right);
public abstract IdentityReference Translate(Type targetType);
}
}