17 references to Windows
System.ServiceModel (16)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (3)
485if (specificBehavior.Windows != null) 492specificBehavior.Windows.AllowedImpersonationLevel.ToString(), 494specificBehavior.Windows.AllowNtlm);
System\ServiceModel\ComIntegration\ChannelCredentials.cs (3)
78channelCredentials.Windows.AllowedImpersonationLevel = (TokenImpersonationLevel)impersonationLevel; 82channelCredentials.Windows.AllowNtlm = allowNtlm; 85channelCredentials.Windows.ClientCredential = newCredentials;
System\ServiceModel\ComIntegration\MexServiceChannelBuilder.cs (1)
310resolver.SoapCredentials.Windows.AllowNtlm = false;
System\ServiceModel\Configuration\ClientCredentialsElement.cs (1)
143this.Windows.ApplyConfiguration(behavior.Windows);
System\ServiceModel\Security\ClientCredentialsSecurityTokenManager.cs (6)
102spnegoTokenProvider.AllowedImpersonationLevel = parent.Windows.AllowedImpersonationLevel; 578new KerberosSecurityTokenProvider(spn, parent.Windows.AllowedImpersonationLevel, SecurityUtils.GetNetworkCredentialOrDefault(parent.Windows.ClientCredential)), 600result = new SspiSecurityTokenProvider(SecurityUtils.GetNetworkCredentialOrDefault(parent.Windows.ClientCredential), 602parent.Windows.AllowNtlm, 603parent.Windows.AllowedImpersonationLevel);
System\ServiceModel\Security\SecurityUtils.cs (2)
2103credential = SecurityUtils.GetNetworkCredentialOrDefault(clientCredentials.Windows.ClientCredential); 2115else if (clientCredentials != null && !clientCredentials.Windows.AllowNtlm)
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\InternalSendMessage.cs (1)
2793this.channelFactory.Credentials.Windows.AllowedImpersonationLevel = factoryKey.TokenImpersonationLevel;