11 references to AuthenticationType
System.Net.Http (11)
System\Net\Http\SocketsHttpHandler\AuthenticationHelper.cs (9)
30
public
AuthenticationType
AuthenticationType { get; }
35
public AuthenticationChallenge(
AuthenticationType
authenticationType, string schemeName, NetworkCredential credential, string? challenge)
80
private static bool TryGetValidAuthenticationChallengeForScheme(string scheme,
AuthenticationType
authenticationType, Uri uri, ICredentials credentials,
125
TryGetValidAuthenticationChallengeForScheme(NegotiateScheme,
AuthenticationType
.Negotiate, authUri, credentials, authenticationHeaderValues, out challenge) ||
126
TryGetValidAuthenticationChallengeForScheme(NtlmScheme,
AuthenticationType
.Ntlm, authUri, credentials, authenticationHeaderValues, out challenge) ||
127
TryGetValidAuthenticationChallengeForScheme(DigestScheme,
AuthenticationType
.Digest, authUri, credentials, authenticationHeaderValues, out challenge) ||
128
TryGetValidAuthenticationChallengeForScheme(BasicScheme,
AuthenticationType
.Basic, authUri, credentials, authenticationHeaderValues, out challenge);
247
case
AuthenticationType
.Digest:
268
case
AuthenticationType
.Basic:
System\Net\Http\SocketsHttpHandler\AuthenticationHelper.NtAuth.cs (2)
91
if (challenge.AuthenticationType ==
AuthenticationType
.Negotiate ||
92
challenge.AuthenticationType ==
AuthenticationType
.Ntlm)