System.Security.Principal.IdentityReference
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);
}
}