ProcessModelSection.ClientConnectedCheck Property
.NET Framework (current version)
Gets or sets a value indicating how long a request is left in the queue.
Assembly: System.Web (in System.Web.dll)
[ConfigurationPropertyAttribute("clientConnectedCheck", DefaultValue = "00:00:05")] [TypeConverterAttribute(typeof(InfiniteTimeSpanConverter))] public TimeSpan ClientConnectedCheck { get; set; }
Property Value
Type: System.TimeSpanA TimeSpan value indicating the queuing time. The default value is 5 seconds.
This property specifies how long a request is queued before ASP.NET performs a client connected check.
Note |
|---|
If the interval expires while the request is still queued, a client connected check is done before passing the request over to the ASP.NET worker process for handling. |
The following code example shows how to access and modify the ClientConnectedCheck property.
.NET Framework
Available since 2.0
Available since 2.0
Show:
