Udostępnij za pośrednictwem


ServicePointManager.DefaultPersistentConnectionLimit Pole

Definicja

Domyślna liczba połączeń trwałych (2) dozwolonych dla obiektu połączonego ServicePoint z serwerem HTTP/1.1 lub nowszym. To pole jest stałe i służy do inicjowania DefaultConnectionLimit właściwości, jeśli wartość DefaultConnectionLimit właściwości nie została ustawiona bezpośrednio lub za pośrednictwem konfiguracji.

public: int DefaultPersistentConnectionLimit = 2;
public const int DefaultPersistentConnectionLimit = 2;
val mutable DefaultPersistentConnectionLimit : int
Public Const DefaultPersistentConnectionLimit As Integer  = 2

Wartość pola

Value = 2

Przykłady

Poniższy przykład kodu ustawia DefaultConnectionLimit właściwość przy użyciu tego pola.

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

Dotyczy