ProcessModelSection.ResponseRestartDeadlockInterval プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
使用されなくなりました。
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 制御されるようになりました。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET