共用方式為


WSDualHttpBinding.ProxyAddress 屬性

定義

取得或設定 HTTP Proxy 的 URI 位址。

public:
 property Uri ^ ProxyAddress { Uri ^ get(); void set(Uri ^ value); };
public Uri ProxyAddress { get; set; }
member this.ProxyAddress : Uri with get, set
Public Property ProxyAddress As Uri

屬性值

Uri

當做 HTTP Proxy 之位址使用的 Uri。 預設值是 null

範例

下列範例會示範如何指定 HTTP Proxy 的位址。

string proxyAddressString = "http://localhost:5049";
Uri proxyBaseAddressUri = new Uri(proxyAddressString);
binding.ProxyAddress = proxyBaseAddressUri;
Dim proxyAddressString As String = "http://localhost:5049"
Dim proxyBaseAddressUri As New Uri(proxyAddressString)
binding.ProxyAddress = proxyBaseAddressUri

備註

如果 UseDefaultWebProxy 設定為 true,則會忽略 ProxyAddress 的值。

適用於