Share via


ProcessModelSection.ResponseRestartDeadlockInterval Eigenschaft

Definition

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

Im folgenden Codebeispiel wird der Zugriff auf die ResponseRestartDeadlockInterval-Eigenschaft veranschaulicht.


// 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 von ASP.NET nicht mehr verwendet und nur aus Gründen der Abwärtskompatibilität bereitgestellt. Es wird kein Konfigurationsfehler verursacht, wenn er bereits in einer Konfigurationsdatei vorhanden ist. Das gesamte Recycling im Falle einer Deadlockbedingung wird jetzt von der ResponseDeadlockInterval -Eigenschaft gesteuert.

Gilt für: