The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
NetTcpBinding::ListenBacklog Property
.NET Framework (current version)
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 pending queued connection requests. The default is 10.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The value cannot be less than zero. |
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.
This example shows how to get the ListenBacklog value.
int listenBacklog = binding.ListenBacklog;
.NET Framework
Available since 3.0
Available since 3.0
Show: