ServicePoint.ConnectionLimit Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Obtient ou définit le nombre maximal de connexions autorisées sur cet objet ServicePoint.
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
Valeur de propriété
Nombre maximal de connexions autorisées sur cet objet ServicePoint.
Exceptions
La limite de connexion est égale ou inférieure à 0.
Exemples
L’exemple de code suivant utilise la propriété ConnectionLimit pour vérifier le nombre maximal de connexions que l’objet ServicePoint peut établir à l’URI spécifié.
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()))
Remarques
Prudence
WebRequest
, HttpWebRequest
, ServicePoint
et WebClient
sont obsolètes et vous ne devez pas les utiliser pour le nouveau développement. Utilisez HttpClient à la place.
La propriété ConnectionLimit définit le nombre maximal de connexions que l’objet ServicePoint peut établir à une ressource Internet. La valeur de la propriété ConnectionLimit est définie sur la valeur de la propriété ServicePointManager.DefaultConnectionLimit lorsque l’objet ServicePoint est créé ; les modifications suivantes apportées à DefaultConnectionLimit n’ont aucun effet sur les objets ServicePoint existants.