HttpTransportBindingElement.ProxyAddress 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个 URI,包含要用于 HTTP 请求的代理地址。
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。 默认值是 null
。
- 属性
示例
下面的示例将此属性设置为在对绑定执行请求时使用。 所有请求都通过此代理路由,但如果 BypassProxyOnLocal 已设置为 true
且终结点为本地终结点,则另当别论。
HttpTransportBindingElement httpBinding = new HttpTransportBindingElement();
httpBinding.ProxyAddress = new Uri(http://proxyserver);