Freigeben über


ServicePoint.ConnectionLimit-Eigenschaft

Ruft die maximale Anzahl von Verbindungen ab, die für dieses ServicePoint-Objekt zulässig sind, oder legt diese fest.

Namespace: System.Net
Assembly: System (in system.dll)

Syntax

'Declaration
Public Property ConnectionLimit As Integer
'Usage
Dim instance As ServicePoint
Dim value As Integer

value = instance.ConnectionLimit

instance.ConnectionLimit = value
public int ConnectionLimit { get; set; }
public:
property int ConnectionLimit {
    int get ();
    void set (int value);
}
/** @property */
public int get_ConnectionLimit ()

/** @property */
public void set_ConnectionLimit (int value)
public function get ConnectionLimit () : int

public function set ConnectionLimit (value : int)

Eigenschaftenwert

Die maximale Anzahl von Verbindungen, die für dieses ServicePoint-Objekt zulässig sind.

Ausnahmen

Ausnahmetyp Bedingung

ArgumentOutOfRangeException

Die Verbindungsgrenze ist kleiner oder gleich 0.

Hinweise

Die ConnectionLimit-Eigenschaft legt die maximale Anzahl von Verbindungen fest, die das ServicePoint-Objekt mit einer Internetressource herstellen kann. Der Wert der ConnectionLimit-Eigenschaft wird beim Erstellen des ServicePoint-Objekts auf den Wert der ServicePointManager.DefaultConnectionLimit-Eigenschaft festgelegt. Spätere Änderungen von DefaultConnectionLimit wirken sich nicht auf vorhandene ServicePoint-Objekte aus.

Beispiel

Im folgenden Codebeispiel wird mit der ConnectionLimit-Eigenschaft die maximale Anzahl von Verbindungen überprüft, die das ServicePoint-Objekt mit dem angegebenen URI (Uniform Resource Identifier) herstellen kann.

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()))
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 = {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.get_ConnectionName()));

// Display the maximum number of connections allowed on this 
// ServicePoint instance.
Console.WriteLine(("ConnectionLimit = " + sp.get_ConnectionLimit()));

// Display the number of connections associated with this 
// ServicePoint instance.
Console.WriteLine(("CurrentConnections = " 
    + sp.get_CurrentConnections()));

Plattformen

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

.NET Compact Framework

Unterstützt in: 2.0, 1.0

Siehe auch

Referenz

ServicePoint-Klasse
ServicePoint-Member
System.Net-Namespace

Weitere Ressourcen

Verwalten von Verbindungen