ProcessModelSection.Timeout Property

 

Gets or sets a value indicating the number of minutes until ASP.NET launches a new worker process.

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

<ConfigurationPropertyAttribute("timeout", DefaultValue := "10675199.02:48:05.4775807")>
<TypeConverterAttribute(GetType(InfiniteTimeSpanConverter))>
Public Property Timeout As TimeSpan

Property Value

Type: System.TimeSpan

The TimeSpan defining the interval. The default is Infinite.

ASP.NET launches a new worker process to take the place of the current one.

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

' Get the current RequestQueueLimit property value.
   Dim requestQueueLimit As Integer = _
   processModelSection.RequestQueueLimit

' Set the RequestQueueLimit property to 10240.
processModelSection.RequestQueueLimit = 10240

.NET Framework
Available since 2.0
Return to top
Show: