TraceSection.TraceMode Property

Definition

Gets or sets the order in which ASP.NET trace information is displayed.

C#
[System.Configuration.ConfigurationProperty("traceMode", DefaultValue=System.Web.Configuration.TraceDisplayMode.SortByTime)]
public System.Web.Configuration.TraceDisplayMode TraceMode { get; set; }

Property Value

One of the TraceDisplayMode values, indicating the order in which trace information is displayed.

Attributes

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;

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