BasicHttpBinding.ProxyAddress Property
.NET Framework 4
Gets or sets the URI address of the HTTP proxy.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
If the UseDefaultWebProxy is set to true, the default address is used and the value of the ProxyAddress set is ignored.
The following example sets ProxyAddress to application settings.
// Get base address from app settings in configuration
Uri baseAddress = new Uri(ConfigurationManager.
AppSettings["baseAddress"]);
BasicHttpBinding binding = new BasicHttpBinding();
binding.ProxyAddress = baseAddress;
The value of this property can also be set in the configuration file.
<configuration>
<system.serviceModel>
<bindings>
<basicHttpBinding>
<binding name="Binding1"
proxyAddress = "http://myProxy">
<security mode="None" />
</binding>
</basicHttpBinding>
</bindings>
</system.serviceModel>
</configuration>
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.