32 references to Ntlm
System (9)
net\System\Net\AuthenticationScheme.cs (1)
31IntegratedWindowsAuthentication = Negotiate | Ntlm,
net\System\Net\HttpListener.cs (8)
441if ((value & (AuthenticationSchemes.Digest | AuthenticationSchemes.Negotiate | AuthenticationSchemes.Ntlm)) != 0) 1410(authenticationScheme & (AuthenticationSchemes.Negotiate | AuthenticationSchemes.Ntlm | AuthenticationSchemes.Digest)) != 0) 1470else if ((authenticationScheme & AuthenticationSchemes.Ntlm) != AuthenticationSchemes.None && 1473headerScheme = AuthenticationSchemes.Ntlm; 1622case AuthenticationSchemes.Ntlm: 1626string package = headerScheme == AuthenticationSchemes.Ntlm ? NtlmClient.AuthType : NegotiateClient.AuthType; 1736challenge = (headerScheme==AuthenticationSchemes.Ntlm ? NtlmClient.AuthType : NegotiateClient.AuthType); 2237if ((authenticationScheme & AuthenticationSchemes.Ntlm) != 0)
System.ServiceModel (15)
System\ServiceModel\Channels\AuthenticationSchemesHelper.cs (2)
28authScheme.IsSet(AuthenticationSchemes.Ntlm); 47case AuthenticationSchemes.Ntlm:
System\ServiceModel\Channels\HttpChannelFactory.cs (3)
405case AuthenticationSchemes.Ntlm: 626authScheme == AuthenticationSchemes.Ntlm; 2023else if (factory.AuthenticationScheme == AuthenticationSchemes.Ntlm)
System\ServiceModel\Channels\HttpChannelHelpers.cs (1)
3481case AuthenticationSchemes.Ntlm:
System\ServiceModel\Channels\HttpChannelListener.cs (2)
93bindingElement.AuthenticationScheme.IsNotSet(AuthenticationSchemes.Digest | AuthenticationSchemes.Ntlm | AuthenticationSchemes.Negotiate) && 382this.authenticationScheme.IsSet(AuthenticationSchemes.Ntlm))
System\ServiceModel\Channels\HttpTransportBindingElement.cs (2)
746if (effectiveAuthenticationSchemes.IsSet(AuthenticationSchemes.Ntlm)) 824this.AuthenticationScheme = AuthenticationSchemes.Ntlm;
System\ServiceModel\HttpClientCredentialType.cs (2)
50result = AuthenticationSchemes.Ntlm; 79case AuthenticationSchemes.Ntlm:
System\ServiceModel\HttpProxyCredentialType.cs (2)
44result = AuthenticationSchemes.Ntlm; 70case AuthenticationSchemes.Ntlm:
System\ServiceModel\Security\ServiceCredentialsSecurityTokenManager.cs (1)
420authenticationScheme.IsNotSet(AuthenticationSchemes.Digest | AuthenticationSchemes.Ntlm | AuthenticationSchemes.Negotiate))
System.ServiceModel.Activation (3)
System\ServiceModel\Activation\HostedAspNetEnvironment.cs (1)
239bindingElementAuthenticationSchemes == AuthenticationSchemes.Ntlm ||
System\ServiceModel\Activation\MetabaseSettings.cs (2)
178return AuthenticationSchemes.Anonymous | AuthenticationSchemes.Ntlm; 267retValue = retValue | AuthenticationSchemes.Ntlm;
System.ServiceModel.Web (5)
System\ServiceModel\Web\AutomaticEndpointGenerator.cs (2)
73if (supportedSchemes == (AuthenticationSchemes.Anonymous | AuthenticationSchemes.Ntlm)) 77supportedSchemes = AuthenticationSchemes.Ntlm;
System\ServiceModel\Web\WebServiceHost.cs (3)
65if (supportedSchemes == (AuthenticationSchemes.Anonymous | AuthenticationSchemes.Ntlm)) 69supportedSchemes = AuthenticationSchemes.Ntlm; 361case AuthenticationSchemes.Ntlm: