HttpTransportBindingElement.BypassProxyOnLocal Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a value that indicates whether proxies are ignored for local addresses.
public:
property bool BypassProxyOnLocal { bool get(); void set(bool value); };
public bool BypassProxyOnLocal { get; set; }
member this.BypassProxyOnLocal : bool with get, set
Public Property BypassProxyOnLocal As Boolean
Property Value
true
if proxies are ignored for local addresses; otherwise, false
. The default is false
.
Examples
The following example sets this property to use when performing requests on the binding.
HttpTransportBindingElement httpBinding = new HttpTransportBindingElement();
httpBinding.BypassProxyOnLocal = true;
Remarks
A local address is one that is on the local LAN or intranet.
WCF always ignores the proxy if the service address begins with http://localhost
. You should use the host name (rather than localhost
) if you want clients to go through a proxy when talking to services on the same machine.