다음을 통해 공유


ServicePoint.CurrentConnections 속성

정의

ServicePoint 개체와 연결된 열린 연결 수를 가져옵니다.

public:
 property int CurrentConnections { int get(); };
public int CurrentConnections { get; }
member this.CurrentConnections : int
Public ReadOnly Property CurrentConnections As Integer

속성 값

ServicePoint 개체와 연결된 열린 연결 수입니다.

예제

다음 코드 예제에서는 CurrentConnections 속성을 사용 하 여이 ServicePoint 개체와 연결 된 열려 있는 인터넷 연결의 수를 확인 합니다.

// Display the ServicePoint Internet resource address.
Console::WriteLine( "Address = {0}", sp->Address );
// Display the ServicePoint Internet resource address.
Console.WriteLine("Address = {0} ", sp.Address.ToString());
' Display the ServicePoint Internet resource address.
Console.WriteLine(("Address = " + sp.Address.ToString()))

설명

주의

WebRequest, HttpWebRequest, ServicePointWebClient 사용되지 않으므로 새 개발에 사용하면 안 됩니다. 대신 HttpClient 사용합니다.

CurrentConnections 속성에는 이 ServicePoint 개체와 연결된 열린 인터넷 연결 수가 포함됩니다. CurrentConnections 값은 ConnectionLimit값을 초과할 수 없습니다.

적용 대상