NetTcpBinding.MaxConnections 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
클라이언트에서 나중에 재사용하기 위해 풀링할 최대 연결 수 그리고 서버에서 디스패치 보류 가능한 최대 연결 수를 제어하는 값을 가져오거나 설정합니다.
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
속성 값
클라이언트에서는 나중에 재사용하기 위해 풀링할 최대 연결 수이며, 서버에서는 디스패치 보류 가능한 최대 연결 수입니다.
예제
다음 예제에서는 MaxConnections 값을 가져오는 방법을 보여 줍니다.
int maxConnections = binding.MaxConnections;
설명
기본값은 10입니다.