ChannelPoolSettings.IdleTimeout Property

Definition

Get or sets the maximum interval of time for which the channels in the pool can be idle before being closed.

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

Property Value

The TimeSpan that specifies the maximum interval of time for which the channels in the pool can be idle before being closed. The default value is 2 minutes.

Exceptions

The value is less than zero or greater than MaxValue in milliseconds.

Remarks

The IdleTimeout quota is used to mitigate Denial of Service (DOS) attacks on the server that rely on tying up resources for an extended period of time. On the client, setting the correct value can increase the reliability of connecting with the service. The default value is based on a conservatively modest allocation of resources. It is suitable for a development environment and small installation scenarios. Service administrators should review the value if an installation is running out of resources or if connections are being limited despite the availability of additional resources.

Applies to