ProcessModelSection.Timeout プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ASP.NET が新しいワーカー プロセスを起動するまでの時間を分単位で示す値を取得または設定します。
public:
property TimeSpan Timeout { TimeSpan get(); void set(TimeSpan value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))]
[System.Configuration.ConfigurationProperty("timeout", DefaultValue="10675199.02:48:05.4775807")]
public TimeSpan Timeout { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteTimeSpanConverter))>]
[<System.Configuration.ConfigurationProperty("timeout", DefaultValue="10675199.02:48:05.4775807")>]
member this.Timeout : TimeSpan with get, set
Public Property Timeout As TimeSpan
プロパティ値
期間を定義する TimeSpan。 既定値は Infinite です。
- 属性
例
次のコード例は、Timeout プロパティの使用方法を示しています。
// Get the current RequestQueueLimit property value.
int requestQueueLimit =
processModelSection.RequestQueueLimit;
// Set the RequestQueueLimit property to 10240.
processModelSection.RequestQueueLimit = 10240;
' Get the current RequestQueueLimit property value.
Dim requestQueueLimit As Integer = _
processModelSection.RequestQueueLimit
' Set the RequestQueueLimit property to 10240.
processModelSection.RequestQueueLimit = 10240
注釈
ASP.NET は、現在のワーカー プロセスの代わりに新しいワーカー プロセスを起動します。