ProcessModelSection.RequestLimit Property

 

Gets or sets a value indicating the number of requests allowed before a worker process is recycled.

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

<ConfigurationPropertyAttribute("requestLimit", DefaultValue := 2147483647)>
<TypeConverterAttribute(GetType(InfiniteIntConverter))>
<IntegerValidatorAttribute(MinValue := 0)>
Public Property RequestLimit As Integer

Property Value

Type: System.Int32

The number of allowed requests. The default is Infinite.

If the number of requests is exceeded, ASP.NET automatically launches a new worker process to take the place of the current one.

The following code example shows how to use the RequestLimit property.

' Get the current RequestLimit property value.
   Dim reqLimit As Integer = _
   processModelSection.RequestLimit

' Set the RequestLimit property to 4096.
processModelSection.RequestLimit = 4096

.NET Framework
Available since 2.0
Return to top
Show: