System.Net.Authorization
namespace System.Net
{
public class Authorization
{
public bool Complete { get; }
public string ConnectionGroupId { get; }
public string Message { get; }
public bool MutuallyAuthenticated { get; set; }
public string[] ProtectionRealm { get; set; }
public Authorization(string token);
public Authorization(string token, bool finished);
public Authorization(string token, bool finished, string connectionGroupId);
}
}