13 references to DigestClient
System (13)
net\System\Net\_DigestClient.cs (4)
64NetworkCredential NC = credentials.GetCredential(httpWebRequest.ChallengedUri, DigestClient.Signature); 482Logging.PrintError(Logging.Web, SR.GetString(SR.net_log_auth_invalid_challenge, DigestClient.AuthType)); 791startingPoint = startingPoint==-1 ? 0 : startingPoint + DigestClient.SignatureSize; 1067Authorization finalAuthorization = new Authorization(DigestClient.AuthType + " " + authorization.ToString(), false);
net\System\Net\Configuration\AuthenticationModulesSection.cs (1)
55new AuthenticationModuleElement(typeof(DigestClient).AssemblyQualifiedName));
net\System\Net\CredentialCache.cs (4)
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));