TraceDisplayMode Enum

Definition

Specifies the order in which trace messages are displayed.

C#
public enum TraceDisplayMode
Inheritance
TraceDisplayMode

Fields

Name Value Description
SortByTime 1

Emit trace messages in the order they were processed.

SortByCategory 2

Emit trace messages alphabetically by category.

Examples

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.

C#

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

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

Remarks

This enumeration defines the values you can use when setting the TraceMode property.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also