Condividi tramite


HttpRuntimeSection.AppRequestQueueLimit Proprietà

Definizione

Ottiene o imposta un valore che indica il numero massimo di richieste accodate da ASP.NET per l'applicazione.

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

Valore della proprietà

Int32

Numero massimo di richieste che è possibile accodare.

Attributi

Esempio

Nell'esempio seguente viene illustrato come utilizzare la proprietà AppRequestQueueLimit.

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

Commenti

ASP.NET richieste di code quando non sono presenti thread gratuiti sufficienti per elaborarli.

Nota

Quando il numero di richieste accodate supera il limite imposto da questa impostazione, le richieste in ingresso verranno rifiutate con un errore "503 - Server Troppo occupato".

Si applica a