次の方法で共有


HttpTransportBindingElement.UseDefaultWebProxy プロパティ

定義

ユーザー固有の設定ではなく、コンピューター全体のプロキシ設定を使用するかどうかを示す値を取得または設定します。

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

コンピューター全体のプロキシ設定を使用する場合は true。それ以外の場合は、false。 既定値は、true です。

次の例では、ユーザー固有のプロキシ設定を使用しています。

HttpTransportBindingElement httpBinding = new HttpTransportBindingElement();  
httpBinding.UseDefaultWebProxy = false;  

適用対象