11 references to AuthType
System (11)
net\System\Net\_DigestClient.cs (5)
25internal static string Signature = AuthType.ToLower(CultureInfo.InvariantCulture); 152return AuthType; 375Authorization digestResponse = new Authorization(AuthType + " " + clientResponse, authSession.IsCompleted, string.Empty, authSession.IsMutualAuthFlag); 482Logging.PrintError(Logging.Web, SR.GetString(SR.net_log_auth_invalid_challenge, DigestClient.AuthType)); 1067Authorization 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)
1476string.Compare(authorizationHeader, 0, DigestClient.AuthType, 0, index, StringComparison.OrdinalIgnoreCase) == 0) 1598principal = new WindowsPrincipal(CreateWindowsIdentity(userContext.DangerousGetHandle(), DigestClient.AuthType, WindowsAccountType.Normal, true)); 1612challenge = DigestClient.AuthType + " " + outBlob; 2264AddChallenge(ref challenges, DigestClient.AuthType + (string.IsNullOrEmpty(outBlob) ? "" : " " + outBlob));