ServicePointManager.DefaultPersistentConnectionLimit Campo

Definizione

Numero predefinito di connessioni persistenti, pari a 2, consentite su un oggetto ServicePoint connesso a un server HTTP/1.1 o versione successiva. Questo campo è costante e viene usato per inizializzare la proprietà DefaultConnectionLimit se il valore della proprietà DefaultConnectionLimit non è stato impostato direttamente o tramite configurazione.

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

Valore del campo

Value = 2

Esempio

Nell'esempio di codice seguente viene impostata la DefaultConnectionLimit proprietà utilizzando questo campo.

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

Si applica a