3 writes to ProxyAuthenticationScheme
System.ServiceModel (3)
System\ServiceModel\Configuration\HttpTransportElement.cs (1)
195binding.ProxyAuthenticationScheme = this.ProxyAuthenticationScheme;
System\ServiceModel\HttpTransportSecurity.cs (2)
98http.ProxyAuthenticationScheme = HttpProxyCredentialTypeHelper.MapToAuthenticationScheme(this.proxyCredentialType); 114http.ProxyAuthenticationScheme = AuthenticationSchemes.Anonymous;
6 references to ProxyAuthenticationScheme
System.ServiceModel (6)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (1)
213instance.SetProperty(AdministrationStrings.ProxyAuthenticationScheme, http.ProxyAuthenticationScheme.ToString());
System\ServiceModel\Channels\HttpChannelFactory.cs (2)
151if (bindingElement.ProxyAuthenticationScheme == AuthenticationSchemes.Anonymous) 160bindingElement.ProxyAuthenticationScheme);
System\ServiceModel\Configuration\HttpTransportElement.cs (1)
253SetPropertyValueIfNotDefaultValue(ConfigurationStrings.ProxyAuthenticationScheme, source.ProxyAuthenticationScheme);
System\ServiceModel\HttpTransportSecurity.cs (2)
106transportSecurity.proxyCredentialType = HttpProxyCredentialTypeHelper.MapToProxyCredentialType(http.ProxyAuthenticationScheme); 123return http.AuthenticationScheme == AuthenticationSchemes.Anonymous && http.ProxyAuthenticationScheme == AuthenticationSchemes.Anonymous && http.Realm == DefaultRealm;