8 writes to BypassProxyOnLocal
System.ServiceModel (6)
System\ServiceModel\Configuration\HttpTransportElement.cs (1)
184binding.BypassProxyOnLocal = this.BypassProxyOnLocal;
System\ServiceModel\HttpBindingBase.cs (2)
62this.httpTransport.BypassProxyOnLocal = value; 63this.httpsTransport.BypassProxyOnLocal = value;
System\ServiceModel\WSDualHttpBinding.cs (1)
72set { httpTransport.BypassProxyOnLocal = value; }
System\ServiceModel\WSHttpBindingBase.cs (2)
52httpTransport.BypassProxyOnLocal = value; 53httpsTransport.BypassProxyOnLocal = value;
System.ServiceModel.Web (2)
System\ServiceModel\WebHttpBinding.cs (2)
56httpTransportBindingElement.BypassProxyOnLocal = value; 57httpsTransportBindingElement.BypassProxyOnLocal = value;
11 references to BypassProxyOnLocal
System.ServiceModel (10)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (1)
204instance.SetProperty(AdministrationStrings.BypassProxyOnLocal, http.BypassProxyOnLocal);
System\ServiceModel\Channels\HttpChannelFactory.cs (2)
153this.proxy = new WebProxy(bindingElement.ProxyAddress, bindingElement.BypassProxyOnLocal); 159new WebProxyFactory(bindingElement.ProxyAddress, bindingElement.BypassProxyOnLocal,
System\ServiceModel\Configuration\HttpTransportElement.cs (1)
247SetPropertyValueIfNotDefaultValue(ConfigurationStrings.BypassProxyOnLocal, source.BypassProxyOnLocal);
System\ServiceModel\HttpBindingBase.cs (2)
57return this.httpTransport.BypassProxyOnLocal; 336this.BypassProxyOnLocal = transport.BypassProxyOnLocal;
System\ServiceModel\WSDualHttpBinding.cs (2)
71get { return httpTransport.BypassProxyOnLocal; } 237this.BypassProxyOnLocal = transport.BypassProxyOnLocal;
System\ServiceModel\WSHttpBindingBase.cs (2)
49get { return httpTransport.BypassProxyOnLocal; } 226this.BypassProxyOnLocal = transport.BypassProxyOnLocal;
System.ServiceModel.Web (1)
System\ServiceModel\WebHttpBinding.cs (1)
53get { return httpTransportBindingElement.BypassProxyOnLocal; }