Udostępnij za pośrednictwem


TraceSection.TraceMode Właściwość

Definicja

Pobiera lub ustawia kolejność wyświetlania ASP.NET informacji śledzenia.

public:
 property System::Web::Configuration::TraceDisplayMode TraceMode { System::Web::Configuration::TraceDisplayMode get(); void set(System::Web::Configuration::TraceDisplayMode value); };
[System.Configuration.ConfigurationProperty("traceMode", DefaultValue=System.Web.Configuration.TraceDisplayMode.SortByTime)]
public System.Web.Configuration.TraceDisplayMode TraceMode { get; set; }
[<System.Configuration.ConfigurationProperty("traceMode", DefaultValue=System.Web.Configuration.TraceDisplayMode.SortByTime)>]
member this.TraceMode : System.Web.Configuration.TraceDisplayMode with get, set
Public Property TraceMode As TraceDisplayMode

Wartość właściwości

TraceDisplayMode

Jedna z TraceDisplayMode wartości wskazująca kolejność wyświetlania informacji śledzenia.

Atrybuty

Przykłady

W poniższym przykładzie kodu pokazano, jak używać TraceMode właściwości. Ten przykład kodu jest częścią większego przykładu podanego TraceSection dla klasy.


// Get the current Mode property value.
// TraceDisplayMode modeValue = traceSection.TraceMode;

// Set the Mode property to TraceDisplayMode.SortyByTime.
// traceSection.Mode = TraceDisplayMode.SortByTime;

' Get the current Mode property value.
'Dim modeValue As TraceDisplayMode = traceSection.TraceMode

' Set the Mode property to TraceDisplayMode.SortByTime.
'traceSection.Mode = TraceDisplayMode.SortByTime

Dotyczy