TraceListener.TraceOutputOptions Property

Definition

Gets or sets the trace output options.

C#
public System.Diagnostics.TraceOptions TraceOutputOptions { get; set; }
C#
[System.Runtime.InteropServices.ComVisible(false)]
public System.Diagnostics.TraceOptions TraceOutputOptions { get; set; }

Property Value

A bitwise combination of the enumeration values. The default is None.

Attributes

Exceptions

Set operation failed because the value is invalid.

Examples

The following example shows the setting of the TraceOutputOptions property for a console trace listener. The console trace listener is one of the listeners enumerated in the Listeners property of a trace source. This code example is part of a larger example provided for the TraceSource class.

C#
ts.Listeners["console"].TraceOutputOptions |= TraceOptions.Callstack;

Remarks

The TraceOutputOptions property determines the optional content of trace output. The property can be set in the configuration file or programmatically during execution to include additional data specifically for a section of code. For example, you can set the TraceOutputOptions property for the console trace listener to TraceOptions.Callstack to add call stack information to the trace output.

The TraceOptions enumeration is not used by the following classes and methods:

Applies to

Product Versions
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.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
.NET Standard 2.0, 2.1