8 writes to ProxyAddress
System.ServiceModel (6)
System\ServiceModel\Configuration\HttpTransportElement.cs (1)
194binding.ProxyAddress = this.ProxyAddress;
System\ServiceModel\HttpBindingBase.cs (2)
139this.httpTransport.ProxyAddress = value; 140this.httpsTransport.ProxyAddress = value;
System\ServiceModel\WSDualHttpBinding.cs (1)
134set { httpTransport.ProxyAddress = value; }
System\ServiceModel\WSHttpBindingBase.cs (2)
118httpTransport.ProxyAddress = value; 119httpsTransport.ProxyAddress = value;
System.ServiceModel.Web (2)
System\ServiceModel\WebHttpBinding.cs (2)
116httpTransportBindingElement.ProxyAddress = value; 117httpsTransportBindingElement.ProxyAddress = value;
13 references to ProxyAddress
System.ServiceModel (12)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (2)
209if (null != http.ProxyAddress) 211instance.SetProperty(AdministrationStrings.ProxyAddress, http.ProxyAddress.AbsoluteUri.ToString());
System\ServiceModel\Channels\HttpChannelFactory.cs (3)
144else if (bindingElement.ProxyAddress != null) 153this.proxy = new WebProxy(bindingElement.ProxyAddress, bindingElement.BypassProxyOnLocal); 159new WebProxyFactory(bindingElement.ProxyAddress, bindingElement.BypassProxyOnLocal,
System\ServiceModel\Configuration\HttpTransportElement.cs (1)
252SetPropertyValueIfNotDefaultValue(ConfigurationStrings.ProxyAddress, source.ProxyAddress);
System\ServiceModel\HttpBindingBase.cs (2)
134return this.httpTransport.ProxyAddress; 341this.ProxyAddress = transport.ProxyAddress;
System\ServiceModel\WSDualHttpBinding.cs (2)
133get { return httpTransport.ProxyAddress; } 241this.ProxyAddress = transport.ProxyAddress;
System\ServiceModel\WSHttpBindingBase.cs (2)
115get { return httpTransport.ProxyAddress; } 230this.ProxyAddress = transport.ProxyAddress;
System.ServiceModel.Web (1)
System\ServiceModel\WebHttpBinding.cs (1)
113get { return httpTransportBindingElement.ProxyAddress; }