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