Share via


ProcessModelSection.ResponseRestartDeadlockInterval プロパティ

定義

使用されなくなりました。

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

プロパティ値

適用不可。

属性

ResponseRestartDeadlockInterval プロパティへのアクセス方法を次のコード例に示します。


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

注釈

このプロパティは、ASP.NET では使用されなくなり、下位互換性のみを目的として提供されています。 構成ファイルに既に存在する場合、構成エラーは発生しません。 デッドロック状態が発生した場合のすべてのリサイクルは、 プロパティによって ResponseDeadlockInterval 制御されるようになりました。

適用対象