9 references to AuthType
System (9)
net\System\Net\_NegotiateClient.cs (2)
104AuthType, 148return AuthType;
net\System\Net\_NTAuthentication.cs (1)
348if (package == NtlmClient.AuthType || package == NegotiateClient.AuthType) {
net\System\Net\CredentialCache.cs (2)
70|| (string.Compare(authType, NegotiateClient.AuthType, StringComparison.OrdinalIgnoreCase)==0)) 113|| (string.Compare(authenticationType, NegotiateClient.AuthType, StringComparison.OrdinalIgnoreCase)==0))
net\System\Net\HttpListener.cs (4)
1466string.Compare(authorizationHeader, 0, NegotiateClient.AuthType, 0, index, StringComparison.OrdinalIgnoreCase) == 0) 1626string package = headerScheme == AuthenticationSchemes.Ntlm ? NtlmClient.AuthType : NegotiateClient.AuthType; 1736challenge = (headerScheme==AuthenticationSchemes.Ntlm ? NtlmClient.AuthType : NegotiateClient.AuthType); 2234AddChallenge(ref challenges, NegotiateClient.AuthType);