TcpTransportBindingElement::ListenBacklog Property
Gets or sets the maximum number of queued connection requests that can be pending.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
Property Value
Type: System::Int32Returns the maximum number of queued connection requests that can be pending. The default is 10.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The value cannot be less than one. |
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.
The following example shows how to get the ListenBacklog value.
int listenBacklog = bElement.ListenBacklog;
Available since 3.0