System.Web.Configuration Namespace
.NET Framework version 2.0
Specifies the order in which trace messages are displayed.
Member |
Description |
SortByCategory |
Emit trace messages alphabetically by category. |
SortByTime |
Emit trace messages in the order they were processed. |
This enumeration defines the values you can use when setting the TraceMode property.
The following code example shows how to use the TraceMode property. This code example is part of a larger example provided for the TraceSection class.
// 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 |
|
C# |
VB |
ASP.NET Trace Functionality <trace> Section TraceSection Class