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.

NetTcpBinding::ListenBacklog Property

 

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

Namespace:   System.ServiceModel
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 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
Return to top
Show:
© 2017 Microsoft