Freigeben über


ProcessModelSection.ResponseRestartDeadlockInterval Eigenschaft

Definition

Wird nicht mehr verwendet.

public:
 property TimeSpan ResponseRestartDeadlockInterval { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))]
[System.Configuration.ConfigurationProperty("responseRestartDeadlockInterval", DefaultValue="00:03:00")]
public TimeSpan ResponseRestartDeadlockInterval { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))>]
[<System.Configuration.ConfigurationProperty("responseRestartDeadlockInterval", DefaultValue="00:03:00")>]
member this.ResponseRestartDeadlockInterval : TimeSpan with get, set
Public Property ResponseRestartDeadlockInterval As TimeSpan

Eigenschaftswert

Nicht zutreffend.

Attribute

Beispiele

Das folgende Codebeispiel zeigt, wie Sie auf die ResponseRestartDeadlockInterval Eigenschaft zugreifen.


// 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");
' 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")

Hinweise

Diese Eigenschaft wird nicht mehr von ASP.NET verwendet und wird nur aus Gründen der Abwärtskompatibilität bereitgestellt. Es verursacht keinen Konfigurationsfehler, wenn er bereits in einer Konfigurationsdatei vorhanden ist. Das gesamte Recycling im Falle eines Deadlock-Zustands wird nun von der ResponseDeadlockInterval Eigenschaft gesteuert.

Gilt für: