WebHttpBindingElement.BypassProxyOnLocal 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示是否跳过代理服务器而使用本地地址。
public:
property bool BypassProxyOnLocal { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("bypassProxyOnLocal", DefaultValue=false)]
public bool BypassProxyOnLocal { get; set; }
[<System.Configuration.ConfigurationProperty("bypassProxyOnLocal", DefaultValue=false)>]
member this.BypassProxyOnLocal : bool with get, set
Public Property BypassProxyOnLocal As Boolean
属性值
如果跳过代理服务器而使用本地地址,则为 true
;否则为 false
。 默认值是 false
。
- 属性
注解
如果 Internet 资源具有本地地址,则该资源是本地资源。 本地地址是在同一台计算机上,本地 LAN 或 intranet 上的地址,在语法上,在 ) 缺少句点 http://webserver/
(。 http://localhost/
通过设置 BypassProxyOnLocal 属性可以确定在访问本地资源时,采用 WebHttpBindingElement 进行配置的终结点是否使用代理服务器。
如果 BypassProxyOnLocal 为 true
,则对本地 Internet 资源的请求不使用代理服务器。 BypassProxyOnLocal 为 false
时,所有 Internet 请求都通过代理服务器进行。