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

属性值

Int32

队列中允许的最大请求数。

属性

示例

下面的示例演示如何使用 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 - 服务器太忙”错误。

适用于