HttpTransportBindingElement.ProxyAddress 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定 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
屬性值
包含 Proxy 位址的 Uri。 預設值是 null
。
- 屬性
範例
下列範例會將這個屬性設定為在對繫結執行要求時使用。 所有要求會透過這個 Proxy 傳送,除非 BypassProxyOnLocal 是設為 true
且該端點為本機端點。
HttpTransportBindingElement httpBinding = new HttpTransportBindingElement();
httpBinding.ProxyAddress = new Uri(http://proxyserver);