1 write to httpTransport
System.ServiceModel (1)
System\ServiceModel\WSDualHttpBinding.cs (1)
215this.httpTransport = new HttpTransportBindingElement();
15 references to httpTransport
System.ServiceModel (15)
System\ServiceModel\WSDualHttpBinding.cs (15)
71get { return httpTransport.BypassProxyOnLocal; } 72set { httpTransport.BypassProxyOnLocal = value; } 92get { return httpTransport.HostNameComparisonMode; } 93set { httpTransport.HostNameComparisonMode = value; } 99get { return httpTransport.MaxBufferPoolSize; } 102httpTransport.MaxBufferPoolSize = value; 109get { return httpTransport.MaxReceivedMessageSize; } 118httpTransport.MaxReceivedMessageSize = value; 133get { return httpTransport.ProxyAddress; } 134set { httpTransport.ProxyAddress = value; } 165public override string Scheme { get { return httpTransport.Scheme; } } 186get { return httpTransport.UseDefaultWebProxy; } 187set { httpTransport.UseDefaultWebProxy = value; } 282if (!this.httpTransport.IsMatch(transport)) 370bindingElements.Add(httpTransport);