This documentation is archived and is not being maintained.
ProcessModelSection.Timeout Property
.NET Framework (current version)
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
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