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

属性值

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是时,将丢弃新请求,直到从日志中删除早期请求或请求限制增加。

适用于

另请参阅