Windows apps
Collapse the table of content
Expand the table of content
Information
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.

TcpTransportBindingElement::ListenBacklog Property

 

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

Namespace:   System.ServiceModel.Channels
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

public:
property int ListenBacklog {
	int get();
	void set(int value);
}

Property Value

Type: System::Int32

Returns 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;

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft