NetTcpBinding.ListenBacklog Property

Definition

Gets or sets the maximum number of queued connection requests that can be pending.

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

Property Value

The maximum number of pending queued connection requests. The default is 10.

Exceptions

The value cannot be less than zero.

Examples

This example shows how to get the ListenBacklog value.

int listenBacklog = binding.ListenBacklog;

Remarks

ListenBacklog is a socket-level property that describes the number of "pending accept" requests to be queued. If the listen backlog queue fills up, new socket requests will be rejected.

Applies to