ApplicationPool.QueueLength Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the maximum number of requests to queue in an application pool before rejecting requests.
public:
property long QueueLength { long get(); void set(long value); };
public long QueueLength { get; set; }
member this.QueueLength : int64 with get, set
Public Property QueueLength As Long
Property Value
The maximum number of requests to queue before rejecting additional requests.
Remarks
When the maximum number of requests in the queue has been reached, the service returns an out-of-service message (503: Service Unavailable) to any additional requests to the current application pool.
You can use this property to configure the request queue of the current application pool. To set default values for all application pools on the server, use the ApplicationPoolDefaults object.