6 private string m_Message;
8 private bool m_Complete;
10 private string[] m_ProtectionRealm;
12 private string m_ConnectionGroupId;
14 private bool m_MutualAuth;
35 return m_ProtectionRealm;
39 string[] array = m_ProtectionRealm = ValidationHelper.MakeEmptyArrayNull(value);
66 m_Message = ValidationHelper.MakeStringNull(token);
75 m_Message = ValidationHelper.MakeStringNull(token);
76 m_Complete = finished;
83 public Authorization(
string token,
bool finished,
string connectionGroupId)
84 : this(token, finished, connectionGroupId, mutualAuth: false)
88 internal Authorization(
string token,
bool finished,
string connectionGroupId,
bool mutualAuth)
90 m_Message = ValidationHelper.MakeStringNull(token);
91 m_ConnectionGroupId = ValidationHelper.MakeStringNull(connectionGroupId);
92 m_Complete = finished;
93 m_MutualAuth = mutualAuth;
96 internal void SetComplete(
bool complete)
98 m_Complete = complete;
Contains an authentication message for an Internet server.
Authorization(string token)
Creates a new instance of the T:System.Net.Authorization class with the specified authorization messa...
bool Complete
Gets the completion status of the authorization.
string ConnectionGroupId
Gets a unique identifier for user-specific connections.
bool MutuallyAuthenticated
Gets or sets a T:System.Boolean value that indicates whether mutual authentication occurred.
string Message
Gets the message returned to the server in response to an authentication challenge.
Authorization(string token, bool finished)
Creates a new instance of the T:System.Net.Authorization class with the specified authorization messa...
Authorization(string token, bool finished, string connectionGroupId)
Creates a new instance of the T:System.Net.Authorization class with the specified authorization messa...
string [] ProtectionRealm
Gets or sets the prefix for Uniform Resource Identifiers (URIs) that can be authenticated with the P:...