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