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(typeof (InfiniteTimeSpanConverter))]
public TimeSpan Timeout { get ; set ; }
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.
int requestQueueLimit =
processModelSection.RequestQueueLimit;
// Set the RequestQueueLimit property to 10240.
processModelSection.RequestQueueLimit = 10240;
.NET Framework
Available since 2.0
Return to top