次の方法で共有


ServicePointManagerElement.Expect100Continue プロパティ

定義

100-Continue 動作を使用するかどうかを決定するブール値を取得または設定します。

public:
 property bool Expect100Continue { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("expect100Continue", DefaultValue=true)]
public bool Expect100Continue { get; set; }
[<System.Configuration.ConfigurationProperty("expect100Continue", DefaultValue=true)>]
member this.Expect100Continue : bool with get, set
Public Property Expect100Continue As Boolean

プロパティ値

POST 要求に対して 100-Continue 応答を見込んでいる場合は true。それ以外の場合は false。 既定値は true です。

属性

注釈

このプロパティが に true設定されている場合、 メソッドを使用 POST するクライアント要求は、クライアントが投稿するデータを送信する必要があることを示すために、サーバーから 100 -Continue 応答を受け取ることを想定しています。 このメカニズムにより、クライアントは、要求ヘッダーに基づいてサーバーが要求を拒否する場合に、ネットワーク経由で大量のデータを送信することを回避できます。

詳細については、「ServicePointManager.Expect100Continue」を参照してください。

適用対象

こちらもご覧ください