The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
HttpTransportBindingElement::ProxyAuthenticationScheme Property
.NET Framework (current version)
Gets or sets the authentication scheme used to authenticate client requests being processed by an HTTP proxy.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
public: property AuthenticationSchemes ProxyAuthenticationScheme { AuthenticationSchemes get(); void set(AuthenticationSchemes value); }
Property Value
Type: System.Net::AuthenticationSchemesThe AuthenticationSchemes enumeration that specifies the protocols used for client authentication on the proxy. The default is Anonymous.
The following example sets this property to use when sending requests to the proxy specified in the ProxyAddress property.
[C#]
HttpTransportBindingElement httpBinding = new HttpTransportBindingElement(); httpBinding.ProxyAddress = new Uri(http://proxyserver); httpBinding.ProxyAuthenticationScheme = AuthenticationSchemes.Digest;
.NET Framework
Available since 3.0
Available since 3.0
Show: