ConnectionOrientedTransportBindingElement.MaxPendingConnections Property

Definition

Gets or sets the maximum number of connections awaiting dispatch on the service.

public:
 property int MaxPendingConnections { int get(); void set(int value); };
public int MaxPendingConnections { get; set; }
member this.MaxPendingConnections : int with get, set
Public Property MaxPendingConnections As Integer

Property Value

The maximum number of inbound connections awaiting dispatch on the service. The default value is 12 * number of processors.

Exceptions

The value is less than or equal to zero.

Remarks

This property controls how many connections a transport has accepted but have not been picked up by the ServiceModel Dispatcher. To set this value, use MaxConnections on the binding or maxOutboundConnectionsPerEndpoint on the binding element.

When a higher layer in the stack calls AcceptDispatch, that connection is removed from the queue of connections awaiting dispatch.

Applies to