다음을 통해 공유


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-서버 사용 중" 오류입니다.

적용 대상