ProcessModelSection.RestartQueueLimit Property

 

Gets or sets a value indicating the maximum number of requests queued by the ISAPI while waiting for a new worker process to start handling the requests.

Namespace:   System.Web.Configuration
Assembly:  System.Web (in System.Web.dll)

<ConfigurationPropertyAttribute("restartQueueLimit", DefaultValue := 10)>
<TypeConverterAttribute(GetType(InfiniteIntConverter))>
<IntegerValidatorAttribute(MinValue := 0)>
Public Property RestartQueueLimit As Integer

Property Value

Type: System.Int32

The number of requests queued. The default is 10.

When this limit is exceeded, a client request will receive a 503 error until the worker process is ready.

The following code example shows how to access the RestartQueueLimit property.

' Get the current RestartQueueLimit property value.
   Dim restartQueueLimit As Integer = _
   processModelSection.RestartQueueLimit

' Set the RestartQueueLimit property to 8.
processModelSection.RestartQueueLimit = 8

.NET Framework
Available since 2.0
Return to top
Show: