ServicePointManager.UseNagleAlgorithm プロパティ

定義

この ServicePointManager オブジェクトが管理するサービス ポイントで Nagle アルゴリズムが使用されるかどうかを確認します。

public:
 static property bool UseNagleAlgorithm { bool get(); void set(bool value); };
public static bool UseNagleAlgorithm { get; set; }
static member UseNagleAlgorithm : bool with get, set
Public Shared Property UseNagleAlgorithm As Boolean

プロパティ値

Nagle アルゴリズムを使用する場合は true。それ以外の場合は false。 既定値は 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

注釈

Nagle アルゴリズムは、データの小さなパケットをバッファリングし、それらを 1 つのパケットとして送信することで、ネットワーク トラフィックを削減するために使用されます。 このプロセスは"ナグリング" とも呼ばれます。送信されるパケットの数を減らし、パケットごとのオーバーヘッドを減らすので広く使用されています。

このプロパティの値を変更しても、既存 ServicePoint のオブジェクトには影響しません。 変更後に作成された新しいサービス ポイントのみが影響を受けます。

Nagle アルゴリズムについては、IETF RFC 896 で完全に説明されています。

適用対象

こちらもご覧ください