Share via


ServicePoint.ConnectionLimit 속성

정의

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 는 속성을 지정 된 URI (Uniform Resource Identifier)에 대 한 개체를 만들 수 있는 ServicePoint 연결의 최대 수를 검사 합니다.

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

설명

속성은 ConnectionLimit 개체가 인터넷 리소스에 ServicePoint 대해 만들 수 있는 최대 연결 수를 설정합니다. 속성의 ConnectionLimit 값은 개체를 만들 때 ServicePoint 속성 값 ServicePointManager.DefaultConnectionLimit 으로 설정되며, 이후 변경 DefaultConnectionLimit 내용이 기존 ServicePoint 개체에 영향을 주지 않습니다.

적용 대상

추가 정보