ServicePoint.ConnectionLimit 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
이 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
속성 값
이 ServicePoint 개체에 허용되는 최대 연결 수입니다.
예외
연결 제한은 0보다 작거나 같습니다.
예제
다음은 ConnectionLimit 속성을 사용하여 ServicePoint 개체가 지정한 URI(Uniform Resource Identifier)에 대해 수행할 수 있는 최대 연결 수를 확인하는 코드 예제입니다.
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
, ServicePoint
및 WebClient
사용되지 않으므로 새 개발에 사용하면 안 됩니다. 대신 HttpClient 사용합니다.
ConnectionLimit 속성은 ServicePoint 개체가 인터넷 리소스에 대해 만들 수 있는 최대 연결 수를 설정합니다. ConnectionLimit 속성의 값은 ServicePoint 개체를 만들 때 ServicePointManager.DefaultConnectionLimit 속성의 값으로 설정됩니다. 이후 DefaultConnectionLimit 변경은 기존 ServicePoint 개체에 영향을 주지 않습니다.
적용 대상
추가 정보
- 연결 관리
.NET