Udostępnij za pośrednictwem


ProcessModelSection.ResponseRestartDeadlockInterval Właściwość

Definicja

Nie jest już używane.

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

Wartość właściwości

TimeSpan

Nie dotyczy.

Atrybuty

Przykłady

Poniższy przykład kodu pokazuje, jak uzyskać dostęp ResponseRestartDeadlockInterval do właściwości.


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

Uwagi

Ta właściwość nie jest już używana przez ASP.NET i jest udostępniana tylko w celu zapewnienia zgodności z poprzednimi wersjami. Nie spowoduje to błędu konfiguracji, jeśli jest już obecny w pliku konfiguracji. Cały recykling w przypadku stanu zakleszczenia jest teraz kontrolowany przez ResponseDeadlockInterval właściwość.

Dotyczy