TraceContext.TraceMode Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the sorted order in which trace messages should be output to a requesting browser.
public:
property System::Web::TraceMode TraceMode { System::Web::TraceMode get(); void set(System::Web::TraceMode value); };
public System.Web.TraceMode TraceMode { get; set; }
member this.TraceMode : System.Web.TraceMode with get, set
Public Property TraceMode As TraceMode
Property Value
One of the TraceMode enumeration values. The default is the setting specified by the traceMode
attribute in the trace
section of a configuration file, whose default is SortByTime
.
Exceptions
The selected value is not one of the TraceMode enumeration values.
Examples
The following code example demonstrates how you can sort a page's trace statements alphabetically by the categories that you have assigned to the statements.
<%@ Page Language="C#" Trace="True" TraceMode="SortByCategory" %>
<%@ Page Language="VB" Trace="True" TraceMode="SortByCategory" %>
Remarks
Trace messages can be sorted in the order they were processed, or alphabetically by user-defined category.