Udostępnij za pośrednictwem


HttpRuntimeSection.AppRequestQueueLimit Właściwość

Definicja

Pobiera lub ustawia wartość wskazującą maksymalną liczbę żądań, które ASP.NET kolejki dla aplikacji.

public:
 property int AppRequestQueueLimit { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("appRequestQueueLimit", DefaultValue=5000)]
[System.Configuration.IntegerValidator(MinValue=1)]
public int AppRequestQueueLimit { get; set; }
[<System.Configuration.ConfigurationProperty("appRequestQueueLimit", DefaultValue=5000)>]
[<System.Configuration.IntegerValidator(MinValue=1)>]
member this.AppRequestQueueLimit : int with get, set
Public Property AppRequestQueueLimit As Integer

Wartość właściwości

Maksymalna liczba żądań, które można kolejkować.

Atrybuty

Przykłady

W poniższym przykładzie pokazano, jak używać AppRequestQueueLimit właściwości .

// Get the AppRequestQueueLimit property value.
Response.Write("AppRequestQueueLimit: " +
  configSection.AppRequestQueueLimit + "<br>");

// Set the AppRequestQueueLimit property value to 4500.
configSection.AppRequestQueueLimit = 4500;
' Get the AppRequestQueueLimit property value.
Response.Write("AppRequestQueueLimit: " & _
  configSection.AppRequestQueueLimit & "<br>")

' Set the AppRequestQueueLimit property value to 4500.
configSection.AppRequestQueueLimit = 4500

Uwagi

ASP.NET żądań kolejek, gdy nie ma wystarczającej liczby wolnych wątków do ich przetwarzania.

Uwaga

Gdy liczba żądań w kolejce przekroczy limit narzucony przez to ustawienie, żądania przychodzące zostaną odrzucone z powodu błędu "503 — Serwer jest zbyt zajęty".

Dotyczy