ServicePoint.ConnectionLimit Vlastnost
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá nebo nastaví maximální počet připojení povolených pro tento ServicePoint objektu.
public:
property int ConnectionLimit { int get(); void set(int value); };
public int ConnectionLimit { get; set; }
member this.ConnectionLimit : int with get, set
Public Property ConnectionLimit As Integer
Hodnota vlastnosti
Maximální počet připojení povolených pro tento objekt ServicePoint.
Výjimky
Limit připojení je roven nebo menší než 0.
Příklady
Následující příklad kódu používá ConnectionLimit vlastnost ke kontrole maximálního počtu připojení, které ServicePoint objekt může provést na zadaný identifikátor URI (Uniform Resource Identifier).
Console::WriteLine( "ConnectionName = {0}", sp->ConnectionName );
// Display the maximum number of connections allowed on this
// ServicePoint instance.
Console::WriteLine( "ConnectionLimit = {0}", sp->ConnectionLimit );
// Display the number of connections associated with this
// ServicePoint instance.
Console::WriteLine( "CurrentConnections = {0}", sp->CurrentConnections );
Console.WriteLine("ConnectionName = " + sp.ConnectionName);
// Display the maximum number of connections allowed on this
// ServicePoint instance.
Console.WriteLine("ConnectionLimit = " + sp.ConnectionLimit);
// Display the number of connections associated with this
// ServicePoint instance.
Console.WriteLine("CurrentConnections = " + sp.CurrentConnections);
Console.WriteLine(("ConnectionName = " + sp.ConnectionName))
' Display the maximum number of connections allowed on this
' ServicePoint instance.
Console.WriteLine(("ConnectionLimit = " + sp.ConnectionLimit.ToString()))
' Display the number of connections associated with this
' ServicePoint instance.
Console.WriteLine(("CurrentConnections = " + sp.CurrentConnections.ToString()))
Poznámky
Opatrnost
WebRequest
, HttpWebRequest
, ServicePoint
a WebClient
jsou zastaralé a neměli byste je používat pro nový vývoj. Místo toho použijte HttpClient.
Vlastnost ConnectionLimit nastaví maximální počet připojení, která může objekt ServicePoint vytvořit pro internetový prostředek. Hodnota vlastnosti ConnectionLimit je nastavena na hodnotu ServicePointManager.DefaultConnectionLimit vlastnost při vytvoření ServicePoint objektu; následné změny DefaultConnectionLimit nemají žádný vliv na existující objekty ServicePoint.