Поделиться через


ProcessModelSection.RequestQueueLimit Свойство

Определение

Возвращает или задает значение, указывающее количество допустимых в очереди запросов.

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

Значение свойства

Количество допустимых в очереди запросов. Значение по умолчанию — 5000.

Атрибуты

Примеры

В следующем примере кода показано, как использовать свойство RequestQueueLimit.


// 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 начинает возвращать новые запросы об ошибках "503 — сервер слишком занят". При достижении этого предела система работает в ненормальных условиях. Это может быть симптомом неисправности или, возможно, просто высокой нагрузки. Перезапуск (отказ) рабочего процесса может стать единственным способом предотвратить дальнейшие проблемы.

Применяется к