Udostępnij za pośrednictwem


ServicePoint.ConnectionName Właściwość

Definicja

Pobiera nazwę połączenia.

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

Wartość właściwości

String reprezentująca nazwę połączenia.

Przykłady

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

Uwagi

Ostrożność

WebRequest, HttpWebRequest, ServicePointi WebClient są przestarzałe i nie należy ich używać do tworzenia nowych aplikacji. Zamiast tego użyj HttpClient.

Jeśli obiekt ServicePoint został skonstruowany przez wywołanie przeciążenia FindServicePoint z argumentem Uri, właściwość ConnectionName reprezentuje właściwość Scheme używanego obiektu Uri.

Jeśli obiekt ServicePoint został skonstruowany z hosta i portu sieciowego, właściwość ConnectionName zawiera ciąg reprezentujący hosta i port sieciowy. Jeśli właściwość ConnectionName jest ustawiona podczas konstruowania z hosta i portu, tylko WebRequest obiekty o tej samej wartości ConnectionGroupName mogą używać tego obiektu ServicePoint.

Dotyczy

Zobacz też