Freigeben über


ServicePointManager.UseNagleAlgorithm-Eigenschaft

Bestimmt, ob der Nagle-Algorithmus von den Dienstpunkten verwendet wird, die von diesem ServicePointManager-Objekt verwaltet werden.

Namespace: System.Net
Assembly: System (in system.dll)

Syntax

'Declaration
Public Shared Property UseNagleAlgorithm As Boolean
'Usage
Dim value As Boolean

value = ServicePointManager.UseNagleAlgorithm

ServicePointManager.UseNagleAlgorithm = value
public static bool UseNagleAlgorithm { get; set; }
public:
static property bool UseNagleAlgorithm {
    bool get ();
    void set (bool 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)

Eigenschaftenwert

true, wenn der Nagle-Algorithmus verwendet werden soll, andernfalls false. Der Standardwert ist true.

Hinweise

Mithilfe des Nagle-Algorithmus wird der Netzwerkverkehr entlastet, indem kleine Datenpakete gepuffert und als ein Paket übertragen werden. Dieser auch als "Nagling" bezeichnete Vorgang wird häufig verwendet, da er die Anzahl der übertragenen Pakete und damit den Aufwand pro Paket verringert.

Änderungen des Werts dieser Eigenschaft wirken sich nicht auf vorhandene ServicePoint-Objekte aus. Es sind nur neue Dienstpunkte betroffen, die nach der Änderung erstellt wurden.

Der Nagle-Algorithmus wird in IETF RFC 896 vollständig beschrieben.

Beispiel

Im folgenden Codebeispiel wird diese Eigenschaft festgelegt.

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;
ServicePointManager.set_UseNagleAlgorithm(true);
ServicePointManager.set_Expect100Continue(true);
ServicePointManager.set_CheckCertificateRevocationList(true);
ServicePointManager.set_DefaultConnectionLimit(
    ServicePointManager.DefaultPersistentConnectionLimit);

Plattformen

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1

Siehe auch

Referenz

ServicePointManager-Klasse
ServicePointManager-Member
System.Net-Namespace