WSDualHttpBinding.UseDefaultWebProxy 属性

定义

获取或设置一个值,该值指示是否应使用系统的自动配置 HTTP 代理(如果可用)。

public:
 property bool UseDefaultWebProxy { bool get(); void set(bool value); };
public bool UseDefaultWebProxy { get; set; }
member this.UseDefaultWebProxy : bool with get, set
Public Property UseDefaultWebProxy As Boolean

属性值

Boolean

如果应使用系统的自动配置 HTTP 代理(如果可用),则为 true;否则为 false。 默认值是 true

示例

下面的示例演示如何设置 UseDefaultWebProxy 属性,以使用系统的自动配置的 HTTP 代理。

binding.UseDefaultWebProxy = true;
binding.UseDefaultWebProxy = True

适用于