다음을 통해 공유


TraceSection.RequestLimit 속성

정의

ASP.NET에서 추적 정보를 저장하는 애플리케이션에 대한 최대 요청 수를 나타내는 값을 가져오거나 설정합니다.

public:
 property int RequestLimit { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("requestLimit", DefaultValue=10)]
[System.Configuration.IntegerValidator(MinValue=0)]
public int RequestLimit { get; set; }
[<System.Configuration.ConfigurationProperty("requestLimit", DefaultValue=10)>]
[<System.Configuration.IntegerValidator(MinValue=0)>]
member this.RequestLimit : int with get, set
Public Property RequestLimit As Integer

속성 값

서버에 저장할 최대 요청 수입니다. 기본값은 10입니다.

특성

예제

다음 코드 예제에서는 RequestLimit 속성을 사용하는 방법을 보여 줍니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 TraceSection 클래스입니다.


// Get the current RequestLimit property value.
Int32 requestLimitValue = traceSection.RequestLimit;

// Set the RequestLimit property to 256.
traceSection.RequestLimit = 256;

' Get the current RequestLimit property value.
Dim requestLimitValue As Int32 = traceSection.RequestLimit

' Set the RequestLimit property to 256.
traceSection.RequestLimit = 256

설명

최대 요청 제한은 10,000 개입니다. 10,000 보다 큰 값을 지정 하는 경우 자동으로 반올림 됩니다 10,000 ASP.NET에서.

MostRecent 속성 최근 요청이 또는 도착 하는 첫 번째 요청을 서버에 저장 된 요청 되는지 여부를 결정 하는 값을 가져오거나 합니다.

참고 요청 수가이 설정의 영향을 제한을 초과 하는 경우 및 MostRecentfalse, 더 이상 요청 추적 로그에 저장 됩니다. 하는 경우 MostRecenttrue가장 최근의 요청이이 설정 된 제한에 저장 되 고 이전 요청은 삭제 됩니다.

적용 대상

추가 정보