ServicePointManager.UseNagleAlgorithm Свойство

Определение

Определяет, используется ли алгоритм Nagle точками обслуживания, которыми управляет объект ServicePointManager.

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

Значение свойства

Значение true для использования алгоритма Nagle; в противном случае — значение 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 используется для сокращения сетевого трафика путем буферизации небольших пакетов данных и их передачи в виде одного пакета. Этот процесс также называется "nagling"; он широко используется, так как уменьшает количество передаваемых пакетов и снижает затраты на каждый пакет.

Изменение значения этого свойства не влияет на существующие ServicePoint объекты. Затрагиваются только новые точки обслуживания, созданные после изменения.

Алгоритм Нейгла полностью описан в документе IETF RFC 896.

Применяется к

См. также раздел