ProcessModelSection.ResponseRestartDeadlockInterval Property
.NET Framework (current version)
No longer used.
Assembly: System.Web (in System.Web.dll)
[ConfigurationPropertyAttribute("responseRestartDeadlockInterval", DefaultValue = "00:03:00")] [TypeConverterAttribute(typeof(InfiniteTimeSpanConverter))] public TimeSpan ResponseRestartDeadlockInterval { get; set; }
This property is no longer used by ASP.NET and is provided for backward compatibility only. It will not cause a configuration error if it is already present in a configuration file. All recycling in the event of a deadlock condition is now controlled by the ResponseDeadlockInterval property.
The following code example shows how to access the ResponseRestartDeadlockInterval property.
// Get the current ResponseRestartDeadlockInterval property // value. TimeSpan respRestartDeadlock = processModelSection.ResponseRestartDeadlockInterval; // Set the ResponseRestartDeadlockInterval property to // TimeSpan.Parse("04:00:00"). processModelSection.ResponseRestartDeadlockInterval = TimeSpan.Parse("04:00:00");
.NET Framework
Available since 2.0
Available since 2.0
Show: