ServicePointManager.UseNagleAlgorithm プロパティ
アセンブリ: System (system.dll 内)

Dim value As Boolean value = ServicePointManager.UseNagleAlgorithm ServicePointManager.UseNagleAlgorithm = value
/** @property */ public static boolean get_UseNagleAlgorithm () /** @property */ public static void set_UseNagleAlgorithm (boolean value)
public static function get UseNagleAlgorithm () : boolean public static function set UseNagleAlgorithm (value : boolean)
Nagle アルゴリズムを使用する場合は true。それ以外の場合は false。既定値は true です。

Nagle アルゴリズムは、複数の小さなデータ パケットをバッファに入れて、単一のパケットとして送信することにより、ネットワーク トラフィックを減らすために使用されます。このプロセスは "ナグリング" とも呼ばれます。送信するパケット数を減らしてパケット単位のオーバーヘッドを削減できるので、ナグリングは広く利用されています。
このプロパティの値を変更しても、既存の ServicePoint オブジェクトには影響しません。変更後に作成された新しいサービス ポイントだけに影響します。

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;

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


- ServicePointManager.UseNagleAlgorithm プロパティのページへのリンク