ServicePoint.ConnectionName Propiedad

Definición

Obtiene el nombre de la conexión.

public:
 property System::String ^ ConnectionName { System::String ^ get(); };
public string ConnectionName { get; }
member this.ConnectionName : string
Public ReadOnly Property ConnectionName As String

Valor de propiedad

Un String que representa el nombre de conexión.

Ejemplos

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.

Si el objeto ServicePoint se construyó llamando a una sobrecarga de FindServicePoint con un argumento Uri, la propiedad ConnectionName representa la propiedad Scheme del objeto Uri utilizado.

Si el objeto ServicePoint se construyó a partir de un host de red y puerto, la propiedad ConnectionName contiene una cadena que representa el host y el puerto de red. Si la propiedad ConnectionName se establece cuando se construye a partir de un host y puerto, solo WebRequest objetos con el mismo valor de ConnectionGroupName puede usar este objeto ServicePoint.

Se aplica a

Consulte también

  • de agrupación de conexiones