次の方法で共有


ProcessModelSection.RestartQueueLimit プロパティ

定義

新しいワーカー プロセスによる要求処理の開始を待機している間に ISAPI によってキューに置かれる要求数の上限を示す値を取得または設定します。

public:
 property int RestartQueueLimit { int get(); void set(int value); };
[System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteIntConverter))]
[System.Configuration.ConfigurationProperty("restartQueueLimit", DefaultValue=10)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int RestartQueueLimit { get; set; }
[<System.ComponentModel.TypeConverter(typeof(System.Configuration.InfiniteIntConverter))>]
[<System.Configuration.ConfigurationProperty("restartQueueLimit", DefaultValue=10)>]
[<System.Configuration.IntegerValidator(MinValue=0)>]
member this.RestartQueueLimit : int with get, set
Public Property RestartQueueLimit As Integer

プロパティ値

キューに置かれる要求数。 既定値は 10 です。

属性

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


// Get the current RestartQueueLimit property value.
int restartQueueLimit = 
    processModelSection.RestartQueueLimit;

// Set the RestartQueueLimit property to 8.
processModelSection.RestartQueueLimit = 8;
' Get the current RestartQueueLimit property value.
   Dim restartQueueLimit As Integer = _
   processModelSection.RestartQueueLimit

' Set the RestartQueueLimit property to 8.
processModelSection.RestartQueueLimit = 8

注釈

この制限を超えると、クライアント要求はワーカー プロセスの準備ができるまで 503 エラーを受け取ります。

適用対象