ServicePoint.ConnectionLimit Propiedad

Definición

Obtiene o establece el número máximo de conexiones permitidas en este objeto 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

Valor de propiedad

Número máximo de conexiones permitidas en este objeto ServicePoint.

Excepciones

El límite de conexión es igual o menor que 0.

Ejemplos

En el ejemplo de código siguiente se usa la propiedad ConnectionLimit para comprobar el número máximo de conexiones que el objeto ServicePoint puede realizar en el identificador uniforme de recursos (URI) especificado.

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

Comentarios

Cautela

WebRequest, HttpWebRequest, ServicePointy WebClient están obsoletos y no debe usarlos para el nuevo desarrollo. Use HttpClient en su lugar.

La propiedad ConnectionLimit establece el número máximo de conexiones que el objeto ServicePoint puede realizar en un recurso de Internet. El valor de la propiedad ConnectionLimit se establece en el valor de la propiedad ServicePointManager.DefaultConnectionLimit cuando se crea el objeto ServicePoint; Los cambios posteriores en DefaultConnectionLimit no tienen ningún efecto en los objetos ServicePoint existentes.

Se aplica a

Consulte también