HttpTransportBindingElement.ProxyAddress 屬性

定義

取得或設定 URI,包含用於 HTTP 要求的 Proxy 位址。

public:
 property Uri ^ ProxyAddress { Uri ^ get(); void set(Uri ^ value); };
[System.ComponentModel.TypeConverter(typeof(System.UriTypeConverter))]
public Uri ProxyAddress { get; set; }
public Uri ProxyAddress { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.UriTypeConverter))>]
member this.ProxyAddress : Uri with get, set
member this.ProxyAddress : Uri with get, set
Public Property ProxyAddress As Uri

屬性值

Uri

包含 Proxy 位址的 Uri。 預設值是 null

屬性

範例

下列範例會將這個屬性設定為在對繫結執行要求時使用。 所有要求會透過這個 Proxy 傳送,除非 BypassProxyOnLocal 是設為 true 且該端點為本機端點。

HttpTransportBindingElement httpBinding = new HttpTransportBindingElement();  
httpBinding.ProxyAddress = new Uri(http://proxyserver);  

適用於