ServicePoint::ConnectionLimit Property
Gets or sets the maximum number of connections allowed on this ServicePoint object.
Assembly: System (in System.dll)
Property Value
Type: System::Int32The maximum number of connections allowed on this ServicePoint object.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The connection limit is equal to or less than 0. |
The ConnectionLimit property sets the maximum number of connections that the ServicePoint object can make to an Internet resource. The value of the ConnectionLimit property is set to the value of the ServicePointManager::DefaultConnectionLimit property when the ServicePoint object is created; subsequent changes to DefaultConnectionLimit have no effect on existing ServicePoint objects.
The following code example uses the ConnectionLimit property to check the maximum number of connections that the ServicePoint object can make to the specified Uniform Resource Identifier (URI).
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 );
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.