다음을 통해 공유


TcpTransportElement.ListenBacklog 속성

정의

수신기에서 수락하기까지 대기할 수 있는 최대 채널 수를 지정하는 값을 가져오거나 설정합니다.

public:
 property int ListenBacklog { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("listenBacklog", DefaultValue=10)]
[System.Configuration.IntegerValidator(MinValue=1)]
public int ListenBacklog { get; set; }
[System.Configuration.ConfigurationProperty("listenBacklog", DefaultValue=0)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int ListenBacklog { get; set; }
[<System.Configuration.ConfigurationProperty("listenBacklog", DefaultValue=10)>]
[<System.Configuration.IntegerValidator(MinValue=1)>]
member this.ListenBacklog : int with get, set
[<System.Configuration.ConfigurationProperty("listenBacklog", DefaultValue=0)>]
[<System.Configuration.IntegerValidator(MinValue=0)>]
member this.ListenBacklog : int with get, set
Public Property ListenBacklog As Integer

속성 값

Int32

수신기에서 수락하기까지 대기할 수 있는 최대 채널 수입니다. 기본값은 10입니다.

특성

설명

이 제한을 초과하는 연결은 채널 수가 제한 아래로 내려갈 때까지 큐에 대기됩니다. LeaseTimeout 속성은 연결 예외가 throw되기 전에 클라이언트가 연결 대기할 수 있는 기간을 제한합니다.

적용 대상