TcpTransportBindingElement.ListenBacklog Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Returns the maximum number of queued connection requests that can be pending. The default is 10.
Exceptions
The value cannot be less than one.
Examples
The following example shows how to get the ListenBacklog value.
int listenBacklog = bElement.ListenBacklog;
Remarks
ListenBacklog is a socket-level property that describes the number of "pending accept" requests to be queued. Ensure that the underlying socket queue is not exceeded by the maximum number of concurrent connections.