ServicePointManager.Expect100Continue プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
100-Continue 動作を使用するかどうかを決定する Boolean 値を取得または設定します。
public:
static property bool Expect100Continue { bool get(); void set(bool value); };
public static bool Expect100Continue { get; set; }
static member Expect100Continue : bool with get, set
Public Shared Property Expect100Continue As Boolean
プロパティ値
100-Continue 動作を有効にする場合は true
。 既定値は true
です。
例
次のコード例では、このプロパティを設定します。
ServicePointManager::UseNagleAlgorithm = true;
ServicePointManager::Expect100Continue = true;
ServicePointManager::CheckCertificateRevocationList = true;
ServicePointManager::DefaultConnectionLimit = ServicePointManager::DefaultPersistentConnectionLimit;
ServicePointManager.UseNagleAlgorithm = true;
ServicePointManager.Expect100Continue = true;
ServicePointManager.CheckCertificateRevocationList = true;
ServicePointManager.DefaultConnectionLimit = ServicePointManager.DefaultPersistentConnectionLimit;
ServicePointManager.UseNagleAlgorithm = True
ServicePointManager.Expect100Continue = True
ServicePointManager.CheckCertificateRevocationList = True
ServicePointManager.DefaultConnectionLimit = _
ServicePointManager.DefaultPersistentConnectionLimit
注釈
このプロパティを に true
設定すると、100-Continue 動作が使用されます。 および POST
メソッドを使用PUT
するクライアント要求では、 プロパティが で、 プロパティが 0 より大きい場合、または プロパティが ContentLengthtrue
true の場合Expect100Continue、要求に Expect ヘッダーがSendChunked追加されます。 クライアントは、クライアントが投稿するデータを送信する必要があることを示すために、サーバーから 100 続行応答を受け取ることを期待します。 このメカニズムにより、クライアントは、要求ヘッダーに基づいてサーバーが要求を拒否する場合に、ネットワーク経由で大量のデータを送信することを回避できます。
たとえば、 プロパティが Expect100Continue であると false
します。 要求がサーバーに送信されると、データが含まれます。 要求ヘッダーを読み取った後、サーバーが認証を必要とし、401 応答を送信する必要がある場合、クライアントは適切な認証ヘッダーを使用してデータを再送信する必要があります。
このプロパティが の場合、 true
要求ヘッダーはサーバーに送信されます。 サーバーが要求を拒否していない場合は、データを送信できることを通知する 100 続行応答を送信します。 前の例のように、サーバーが認証を必要とする場合、401 応答が送信され、クライアントは不必要にデータを送信していません。
このプロパティの値を変更しても、既存 ServicePoint のオブジェクトには影響しません。 変更後に作成された新しい ServicePoint オブジェクトのみが影響を受けます。
このプロパティが に true
設定されている場合でも、HTTP 1.0 要求では 100-Continue 動作は使用されません。
期待される 100-Continue 動作については、IETF RFC 2616 セクション 10.1.1 で完全に説明されています。
適用対象
こちらもご覧ください
.NET