Поделиться через


ServicePoint.ConnectionLimit Свойство

Определение

Возвращает или задает максимальное количество подключений, разрешенных для этого объекта ServicePoint.

public:
 property int ConnectionLimit { int get(); void set(int value); };
public int ConnectionLimit { get; set; }
member this.ConnectionLimit : int with get, set
Public Property ConnectionLimit As Integer

Значение свойства

Максимальное количество подключений, разрешенных для этого объекта ServicePoint.

Исключения

Ограничение подключения равно или меньше 0.

Примеры

В следующем примере кода используется свойство ConnectionLimit для проверки максимального количества подключений, которые объект ServicePoint может выполнять с указанным универсальным идентификатором ресурса (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 );
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);
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()))

Комментарии

Осторожность

WebRequest, HttpWebRequest, ServicePointи WebClient устарели, и их не следует использовать для новой разработки. Вместо этого используйте HttpClient.

Свойство ConnectionLimit задает максимальное количество подключений, которые объект ServicePoint может выполнять с интернет-ресурсом. Значение свойства ConnectionLimit присваивается значению свойства ServicePointManager.DefaultConnectionLimit при создании объекта ServicePoint; последующие изменения DefaultConnectionLimit не влияют на существующие объекты ServicePoint.

Применяется к

См. также раздел