다음을 통해 공유


NetTcpBinding.MaxConnections 속성

정의

클라이언트에서 나중에 재사용하기 위해 풀링할 최대 연결 수 그리고 서버에서 디스패치 보류 가능한 최대 연결 수를 제어하는 값을 가져오거나 설정합니다.

public:
 property int MaxConnections { int get(); void set(int value); };
public int MaxConnections { get; set; }
member this.MaxConnections : int with get, set
Public Property MaxConnections As Integer

속성 값

Int32

클라이언트에서는 나중에 재사용하기 위해 풀링할 최대 연결 수이며, 서버에서는 디스패치 보류 가능한 최대 연결 수입니다.

예제

다음 예제에서는 MaxConnections 값을 가져오는 방법을 보여 줍니다.

int maxConnections = binding.MaxConnections;

설명

기본값은 10입니다.

적용 대상