HttpRuntimeSection.AppRequestQueueLimit 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,表示 ASP.NET 要為應用程式加入佇列的最大要求數目。
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
屬性值
可以加入佇列的最大要求數目。
- 屬性
範例
下列範例將示範如何使用 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
備註
當沒有足夠的可用執行緒來處理這些要求時,ASP.NET 佇列要求。
注意
當佇列的要求數目超過此設定所加加的限制時,傳入的要求將會遭到拒絕,並出現「503 - 伺服器太忙碌」錯誤。