10 references to NtlmClient
System (10)
net\System\Net\_AuthenticationManagerBase.cs (2)
119NTAuthentication client = new NTAuthentication(false, NtlmClient.AuthType, 124NTAuthentication server = new NTAuthentication(true, NtlmClient.AuthType,
net\System\Net\_NTAuthentication.cs (1)
348if (package == NtlmClient.AuthType || package == NegotiateClient.AuthType) {
net\System\Net\Configuration\AuthenticationModulesSection.cs (1)
53new AuthenticationModuleElement(typeof(NtlmClient).AssemblyQualifiedName));
net\System\Net\CredentialCache.cs (2)
67&& !((string.Compare(authType, NtlmClient.AuthType, StringComparison.OrdinalIgnoreCase)==0) 110&& !((string.Compare(authenticationType, NtlmClient.AuthType, StringComparison.OrdinalIgnoreCase)==0)
net\System\Net\HttpListener.cs (4)
1471string.Compare(authorizationHeader, 0, NtlmClient.AuthType, 0, index, StringComparison.OrdinalIgnoreCase) == 0) 1626string package = headerScheme == AuthenticationSchemes.Ntlm ? NtlmClient.AuthType : NegotiateClient.AuthType; 1736challenge = (headerScheme==AuthenticationSchemes.Ntlm ? NtlmClient.AuthType : NegotiateClient.AuthType); 2239AddChallenge(ref challenges, NtlmClient.AuthType);