5 writes to Authorization
System (5)
net\System\Net\_AuthenticationState.cs (5)
267
Authorization
= AuthenticationManager.Authenticate(challenge, httpWebRequest, authInfo);
270
Authorization
= null;
283
Authorization
= null;
300
Authorization
= null;
316
Authorization
= null;
27 references to Authorization
System (27)
net\System\Net\_AuthenticationState.cs (22)
215
if (
Authorization
!=null &&
Authorization
.Complete) {
224
GlobalLog.Print("AuthenticationState#" + ValidationHelper.HashString(this) + "::AttemptAuthenticate() Authorization!=null Authorization.Complete:" +
Authorization
.Complete.ToString());
238
GlobalLog.Print("AuthenticationState#" + ValidationHelper.HashString(this) + "::AttemptAuthenticate() authInfo==null Authorization#" + ValidationHelper.HashString(
Authorization
));
252
if (!IsProxyAuth &&
Authorization
!=null && httpWebRequest.ProxyAuthenticationState.
Authorization
!=null) {
253
httpWebRequest.Headers.Set(AuthorizationHeader,
Authorization
.Message);
255
GlobalLog.Print("AuthenticationState#" + ValidationHelper.HashString(this) + "::AttemptAuthenticate() challenge==null Authorization#" + ValidationHelper.HashString(
Authorization
));
277
if (
Authorization
==null) {
281
if (
Authorization
.Message==null) {
287
UniqueGroupId =
Authorization
.ConnectionGroupId;
288
GlobalLog.Print("AuthenticationState#" + ValidationHelper.HashString(this) + "::AttemptAuthenticate() AuthorizationHeader:" + AuthorizationHeader + " blob: " +
Authorization
.Message.Length + "bytes Complete:" +
Authorization
.Complete.ToString());
297
httpWebRequest.Headers.Set(AuthorizationHeader,
Authorization
.Message);
338
GlobalLog.Print("AuthenticationState#" + ValidationHelper.HashString(this) + "::Update() httpWebRequest#" + ValidationHelper.HashString(httpWebRequest) + " Authorization#" + ValidationHelper.HashString(
Authorization
) + " ResponseStatusCode:" + httpWebRequest.ResponseStatusCode.ToString());
340
if (
Authorization
!=null) {
353
GlobalLog.Print("AuthenticationState#" + ValidationHelper.HashString(this) + "::Update() Complete:" +
Authorization
.Complete.ToString() + " Module:" + ValidationHelper.ToString(Module) + " challenge:" + ValidationHelper.ToString(challenge));
374
(httpWebRequest.CurrentAuthenticationState == null || httpWebRequest.CurrentAuthenticationState.
Authorization
== null || !httpWebRequest.CurrentAuthenticationState.
Authorization
.MutuallyAuthenticated))
382
Authorization
.SetComplete(complete);
391
if (httpWebRequest.PreAuthenticate && Module != null &&
Authorization
.Complete && Module.CanPreAuthenticate && httpWebRequest.ResponseStatusCode != StatusCodeMatch) {
393
AuthenticationManager.BindModule(ChallengedUri,
Authorization
, Module);
net\System\Net\_DigestClient.cs (1)
445
httpWebRequest.CurrentAuthenticationState.
Authorization
.MutuallyAuthenticated = authSession.IsMutualAuthFlag;
net\System\Net\_KerberosClient.cs (1)
189
httpWebRequest.CurrentAuthenticationState.
Authorization
.MutuallyAuthenticated = authSession.IsMutualAuthFlag;
net\System\Net\_NegotiateClient.cs (1)
212
httpWebRequest.CurrentAuthenticationState.
Authorization
.MutuallyAuthenticated = authSession.IsMutualAuthFlag;
net\System\Net\HttpWebRequest.cs (2)
5674
if (ServerAuthenticationState != null && ServerAuthenticationState.
Authorization
!= null)
5679
response.InternalSetIsMutuallyAuthenticated = ServerAuthenticationState.
Authorization
.MutuallyAuthenticated;