11 references to AuthType
System (11)
net\System\Net\_DigestClient.cs (5)
25
internal static string Signature =
AuthType
.ToLower(CultureInfo.InvariantCulture);
152
return
AuthType
;
375
Authorization digestResponse = new Authorization(
AuthType
+ " " + clientResponse, authSession.IsCompleted, string.Empty, authSession.IsMutualAuthFlag);
482
Logging.PrintError(Logging.Web, SR.GetString(SR.net_log_auth_invalid_challenge, DigestClient.
AuthType
));
1067
Authorization finalAuthorization = new Authorization(DigestClient.
AuthType
+ " " + authorization.ToString(), false);
net\System\Net\CredentialCache.cs (2)
68
|| (DigestClient.WDigestAvailable && (string.Compare(authType, DigestClient.
AuthType
, StringComparison.OrdinalIgnoreCase)==0))
111
|| (DigestClient.WDigestAvailable && (string.Compare(authenticationType, DigestClient.
AuthType
, StringComparison.OrdinalIgnoreCase)==0))
net\System\Net\HttpListener.cs (4)
1476
string.Compare(authorizationHeader, 0, DigestClient.
AuthType
, 0, index, StringComparison.OrdinalIgnoreCase) == 0)
1598
principal = new WindowsPrincipal(CreateWindowsIdentity(userContext.DangerousGetHandle(), DigestClient.
AuthType
, WindowsAccountType.Normal, true));
1612
challenge = DigestClient.
AuthType
+ " " + outBlob;
2264
AddChallenge(ref challenges, DigestClient.
AuthType
+ (string.IsNullOrEmpty(outBlob) ? "" : " " + outBlob));