.NET Framework Class Library
ServicePoint..::.ConnectionLimit Property

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

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

Visual Basic (Declaration)
Public Property ConnectionLimit As Integer
Visual Basic (Usage)
Dim instance As ServicePoint
Dim value As Integer

value = instance.ConnectionLimit

instance.ConnectionLimit = value
C#
public int ConnectionLimit { get; set; }
Visual C++
public:
property int ConnectionLimit {
    int get ();
    void set (int value);
}
JScript
public function get ConnectionLimit () : int
public function set ConnectionLimit (value : int)

Property Value

Type: System..::.Int32
The maximum number of connections allowed on this ServicePoint object.
Exceptions

ExceptionCondition
ArgumentOutOfRangeException

The connection limit is equal to or less than 0.

Remarks

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.

Examples

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).

Visual Basic
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()))

C#
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);

Visual C++
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 );

CPP_OLD
Console::WriteLine(S"ConnectionName = {0}", sp->ConnectionName);

// Display the maximum number of connections allowed on this 
// ServicePoint instance.
Console::WriteLine(S"ConnectionLimit = {0}", __box(sp->ConnectionLimit));

// Display the number of connections associated with this 
// ServicePoint instance.
Console::WriteLine(S"CurrentConnections = {0}", __box(sp->CurrentConnections));        
Platforms

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0

.NET Compact Framework

Supported in: 3.5, 2.0, 1.0
See Also

Reference

Other Resources

Tags :


Page view tracker