다음을 통해 공유


ServicePoint.ConnectionName 속성

정의

연결 이름을 가져옵니다.

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

속성 값

연결 이름을 나타내는 String.

예제

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, ServicePointWebClient 사용되지 않으므로 새 개발에 사용하면 안 됩니다. 대신 HttpClient 사용합니다.

Uri 인수를 사용하여 FindServicePoint 오버로드를 호출하여 ServicePoint 개체를 생성한 경우 ConnectionName 속성은 사용된 Uri 개체의 Scheme 속성을 나타냅니다.

ServicePoint 개체가 네트워크 호스트 및 포트에서 생성된 경우 ConnectionName 속성에는 호스트 및 네트워크 포트를 나타내는 문자열이 포함됩니다. 호스트 및 포트에서 생성될 때 ConnectionName 속성이 설정된 경우 동일한 ConnectionGroupName 값을 가진 WebRequest 개체만 이 ServicePoint 개체를 사용할 수 있습니다.

적용 대상

추가 정보