System.Security.Principal.NTAccount
namespace System.Security.Principal
{
public sealed class NTAccount : IdentityReference
{
public NTAccount(string name);
public NTAccount(string domainName, string accountName);
public static bool operator ==(NTAccount left, NTAccount right);
public static bool operator !=(NTAccount left, NTAccount right);
}
}