Condividi tramite


TraceSection.MostRecent Proprietà

Definizione

Ottiene o imposta un valore che indica se le richieste più recenti vengono sempre archiviate sul server.

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

Valore della proprietà

true se le richieste più recenti vengono sempre archiviate nel log di traccia; in caso contrario, false. Il valore predefinito è false.

Attributi

Esempio

Nell'esempio di codice riportato di seguito viene illustrato come utilizzare la proprietà MostRecent. Questo esempio di codice fa parte di un esempio più grande fornito per la TraceSection classe.


// 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

Commenti

Le richieste vengono archiviate nel log di traccia nell'ordine RequestLimit in cui arrivano, fino al numero di richieste specificate nella proprietà. Quando viene raggiunto il limite di richiesta ed MostRecent è true, le richieste precedenti vengono rimosse automaticamente e le nuove richieste continuano ad essere aggiunte al log. Quando viene raggiunto il limite di richiesta ed MostRecent è false, le nuove richieste vengono rimosse fino a quando le richieste precedenti non vengono rimosse dal log o il limite di richiesta viene aumentato.

Si applica a

Vedi anche