다음을 통해 공유


TraceSection.MostRecent 속성

정의

최근 요청이 서버에 항상 저장되는지 여부를 나타내는 값을 가져오거나 설정합니다.

public:
 property bool MostRecent { bool get(); void set(bool value); };
[System.Configuration.ConfigurationProperty("mostRecent", DefaultValue=false)]
public bool MostRecent { get; set; }
[<System.Configuration.ConfigurationProperty("mostRecent", DefaultValue=false)>]
member this.MostRecent : bool with get, set
Public Property MostRecent As Boolean

속성 값

최근 요청이 추적 로그에 항상 저장되면 true이고, 그렇지 않으면 false입니다. 기본값은 false입니다.

특성

예제

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


// Get the current MostRecent property value.
Boolean mostRecentValue = traceSection.MostRecent;

// Set the MostRecent property to true.
traceSection.MostRecent = true;

' Get the current MostRecent property value.
Dim mostRecentValue As Boolean = traceSection.MostRecent

' Set the MostRecent property to true.
traceSection.MostRecent = True

설명

요청이 요청에 지정 된 개수까지 도착 순서 대로 추적 로그에 저장 되는 RequestLimit 속성입니다. 요청 제한에 도달한 경우 및 MostRecenttrue, 이전 요청은 자동으로 삭제 됩니다 및 로그에 추가할 새 요청이 계속 합니다. 요청 제한에 도달한 경우 및 MostRecentfalse, 이전 요청 로그에서 제거 되거나 요청 제한이 증가할 때까지 새 요청이 취소 됩니다.

적용 대상

추가 정보