ServicePointManager.DefaultConnectionLimit Property
Assembly: System (in system.dll)
/** @property */ public static int get_DefaultConnectionLimit () /** @property */ public static void set_DefaultConnectionLimit (int value)
public static function get DefaultConnectionLimit () : int public static function set DefaultConnectionLimit (value : int)
Property Value
The maximum number of concurrent connections allowed by a ServicePoint object. The default value is 2.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. |
The following code example sets this property.
ServicePointManager.set_UseNagleAlgorithm(true);
ServicePointManager.set_Expect100Continue(true);
ServicePointManager.set_CheckCertificateRevocationList(true);
ServicePointManager.set_DefaultConnectionLimit(
ServicePointManager.DefaultPersistentConnectionLimit);
- WebPermission for unrestricted Web permissions. Associated enumeration: Unrestricted
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Note