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::ProxyAddress Property

 

Gets or sets a URI that contains the address of the proxy to use for HTTP requests.

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

public:
[TypeConverterAttribute((UriTypeConverter^::typeid))]
property Uri^ ProxyAddress {
	Uri^ get();
	void set(Uri^ value);
}

Property Value

Type: System::Uri^

The Uri that contains the address for the proxy. The default value is null.

The following example sets this property to use when performing requests on the binding. All requests are routed through this proxy, unless BypassProxyOnLocal is set to true and the endpoint is a local endpoint.

[C#]

HttpTransportBindingElement httpBinding = new HttpTransportBindingElement();
httpBinding.ProxyAddress = new Uri(http://proxyserver);

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft