ServicePointManager.UseNagleAlgorithm Propriedade
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Determina se o algoritmo de Nagle é usado pelos pontos de serviço gerenciados por este objeto 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
Valor da propriedade
true
para usar o algoritmo de Nagle; caso contrário, false
. O valor padrão é true
.
Exemplos
O exemplo de código a seguir define essa propriedade.
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
Comentários
O algoritmo Nagle é usado para reduzir o tráfego de rede armazenando em buffer pequenos pacotes de dados e transmitindo-os como um único pacote. Esse processo também é chamado de "nagling"; ele é amplamente usado porque reduz o número de pacotes transmitidos e reduz a sobrecarga por pacote.
Alterar o valor dessa propriedade não afeta os objetos existentes ServicePoint . Somente novos pontos de serviço criados após a alteração são afetados.
O algoritmo Nagle é totalmente descrito em IETF RFC 896.