Windows apps
Collapse the table of content
Expand the table of content
Information
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

 

Gets or sets the authentication scheme used to authenticate client requests being processed by an HTTP proxy.

Namespace:   System.ServiceModel.Channels
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
property AuthenticationSchemes ProxyAuthenticationScheme {
	AuthenticationSchemes get();
	void set(AuthenticationSchemes value);
}

Property Value

Type: System.Net::AuthenticationSchemes

The 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
Return to top
Show:
© 2017 Microsoft