Aracılığıyla paylaş


ProcessModelSection.RestartQueueLimit Özellik

Tanım

Yeni bir çalışan işleminin istekleri işlemeye başlamasını beklerken ISAPI tarafından kuyruğa alınan istek sayısı üst sınırını belirten bir değer alır veya ayarlar.

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

Özellik Değeri

Int32

Kuyruğa alınan istek sayısı. Varsayılan değer 10'dur.

Öznitelikler

Örnekler

Aşağıdaki kod örneği özelliğine nasıl erişeceklerini RestartQueueLimit gösterir.


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

Açıklamalar

Bu sınır aşıldığında, çalışan işlemi hazır olana kadar bir istemci isteği 503 hatası alır.

Şunlara uygulanır