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