Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ServicePoint::ConnectionLimit Property

 

Gets or sets the maximum number of connections allowed on this ServicePoint object.

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

public:
property int ConnectionLimit {
	int get();
	void set(int value);
}

Property Value

Type: System::Int32

The 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 );

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft