ProcessModelSection.ResponseRestartDeadlockInterval Property

 

No longer used.

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

<ConfigurationPropertyAttribute("responseRestartDeadlockInterval",
	DefaultValue := "00:03:00")>
<TypeConverterAttribute(GetType(InfiniteTimeSpanConverter))>
Public Property ResponseRestartDeadlockInterval As TimeSpan

Property Value

Type: System.TimeSpan

Not applicable.

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.
   Dim respRestartDeadlock As TimeSpan = _
   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
Return to top
Show: