共用方式為


HttpRuntimeSection.AppRequestQueueLimit 屬性

定義

取得或設定值,表示 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 - 伺服器太忙碌」錯誤。

適用於