ServicePointManager::DefaultConnectionLimit Property
Gets or sets the maximum number of concurrent connections allowed by a ServicePoint object.
Assembly: System (in System.dll)
Property Value
Type: System::Int32The maximum number of concurrent connections allowed by a ServicePoint object. The default value is 2.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | DefaultConnectionLimit is less than or equal to 0. |
The DefaultConnectionLimit property sets the default maximum number of concurrent connections that the ServicePointManager object assigns to the ConnectionLimit property when creating ServicePoint objects.
Changing the DefaultConnectionLimit property has no effect on existing ServicePoint objects; it affects only ServicePoint objects that are initialized after the change. If the value of this property has not been set either directly or through configuration, the value defaults to the constant DefaultPersistentConnectionLimit.
Note |
|---|
Any changes to the DefaultConnectionLimit property affect both HTTP 1.0 and HTTP 1.1 connections. It is not possible to separately alter the connection limit for HTTP 1.0 and HTTP 1.1 protocols. When used in the server environment (ASP.NET) DefaultConnectionLimit defaults to higher number of connections, which is 10. |
- WebPermission
for unrestricted Web permissions. Associated enumeration: Unrestricted
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.
Note