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