DefaultTraceListener Class
Provides the default output methods and behavior for tracing.
Assembly: System (in System.dll)
System::MarshalByRefObject
System.Diagnostics::TraceListener
System.Diagnostics::DefaultTraceListener
| Name | Description | |
|---|---|---|
![]() | DefaultTraceListener() | Initializes a new instance of the DefaultTraceListener class with "Default" as its Name property value. |
| Name | Description | |
|---|---|---|
![]() | AssertUiEnabled | Gets or sets a value indicating whether the application is running in user-interface mode. |
![]() | Attributes | Gets the custom trace listener attributes defined in the application configuration file.(Inherited from TraceListener.) |
![]() | Filter | Gets and sets the trace filter for the trace listener.(Inherited from TraceListener.) |
![]() | IndentLevel | Gets or sets the indent level.(Inherited from TraceListener.) |
![]() | IndentSize | Gets or sets the number of spaces in an indent.(Inherited from TraceListener.) |
![]() | IsThreadSafe | Gets a value indicating whether the trace listener is thread safe. (Inherited from TraceListener.) |
![]() | LogFileName | Gets or sets the name of a log file to write trace or debug messages to. |
![]() | Name | Gets or sets a name for this TraceListener.(Inherited from TraceListener.) |
![]() | NeedIndent | Gets or sets a value indicating whether to indent the output.(Inherited from TraceListener.) |
![]() | TraceOutputOptions | Gets or sets the trace output options.(Inherited from TraceListener.) |
| Name | Description | |
|---|---|---|
![]() | Close() | When overridden in a derived class, closes the output stream so it no longer receives tracing or debugging output.(Inherited from TraceListener.) |
![]() | CreateObjRef(Type^) | Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.(Inherited from MarshalByRefObject.) |
![]() | Dispose() | Releases all resources used by the TraceListener.(Inherited from TraceListener.) |
![]() | Dispose(Boolean) | Releases the unmanaged resources used by the TraceListener and optionally releases the managed resources.(Inherited from TraceListener.) |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Fail(String^) | Emits or displays a message and a stack trace for an assertion that always fails.(Overrides TraceListener::Fail(String^).) |
![]() | Fail(String^, String^) | Emits or displays detailed messages and a stack trace for an assertion that always fails.(Overrides TraceListener::Fail(String^, String^).) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | Flush() | When overridden in a derived class, flushes the output buffer.(Inherited from TraceListener.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetLifetimeService() | Retrieves the current lifetime service object that controls the lifetime policy for this instance.(Inherited from MarshalByRefObject.) |
![]() | GetSupportedAttributes() | Gets the custom attributes supported by the trace listener.(Inherited from TraceListener.) |
![]() | GetType() | |
![]() | InitializeLifetimeService() | Obtains a lifetime service object to control the lifetime policy for this instance.(Inherited from MarshalByRefObject.) |
![]() | MemberwiseClone() | |
![]() | MemberwiseClone(Boolean) | Creates a shallow copy of the current MarshalByRefObject object.(Inherited from MarshalByRefObject.) |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
![]() | TraceData(TraceEventCache^, String^, TraceEventType, Int32, Object^) | Writes trace information, a data object and event information to the listener specific output.(Inherited from TraceListener.) |
![]() | TraceData(TraceEventCache^, String^, TraceEventType, Int32, array<Object^>^) | Writes trace information, an array of data objects and event information to the listener specific output.(Inherited from TraceListener.) |
![]() | TraceEvent(TraceEventCache^, String^, TraceEventType, Int32) | Writes trace and event information to the listener specific output.(Inherited from TraceListener.) |
![]() | TraceEvent(TraceEventCache^, String^, TraceEventType, Int32, String^) | Writes trace information, a message, and event information to the listener specific output.(Inherited from TraceListener.) |
![]() | TraceEvent(TraceEventCache^, String^, TraceEventType, Int32, String^, array<Object^>^) | Writes trace information, a formatted array of objects and event information to the listener specific output.(Inherited from TraceListener.) |
![]() | TraceTransfer(TraceEventCache^, String^, Int32, String^, Guid) | Writes trace information, a message, a related activity identity and event information to the listener specific output.(Inherited from TraceListener.) |
![]() | Write(Object^) | Writes the value of the object's ToString method to the listener you create when you implement the TraceListener class.(Inherited from TraceListener.) |
![]() | Write(Object^, String^) | Writes a category name and the value of the object's ToString method to the listener you create when you implement the TraceListener class.(Inherited from TraceListener.) |
![]() | Write(String^) | Writes the output to the OutputDebugString function and to the Debugger::Log method.(Overrides TraceListener::Write(String^).) |
![]() | Write(String^, String^) | Writes a category name and a message to the listener you create when you implement the TraceListener class.(Inherited from TraceListener.) |
![]() | WriteIndent() | Writes the indent to the listener you create when you implement this class, and resets the NeedIndent property to false.(Inherited from TraceListener.) |
![]() | WriteLine(Object^) | Writes the value of the object's ToString method to the listener you create when you implement the TraceListener class, followed by a line terminator.(Inherited from TraceListener.) |
![]() | WriteLine(Object^, String^) | Writes a category name and the value of the object's ToString method to the listener you create when you implement the TraceListener class, followed by a line terminator.(Inherited from TraceListener.) |
![]() | WriteLine(String^) | Writes the output to the OutputDebugString function and to the Debugger::Log method, followed by a carriage return and line feed (\r\n).(Overrides TraceListener::WriteLine(String^).) |
![]() | WriteLine(String^, String^) | Writes a category name and a message to the listener you create when you implement the TraceListener class, followed by a line terminator.(Inherited from TraceListener.) |
An instance of this class is automatically added to the Debug::Listeners and Trace::Listeners collections. Explicitly adding a second DefaultTraceListener causes duplicate messages in the debugger output window and duplicate message boxes for asserts.
By default, the Write and WriteLine methods emit the message to the Win32 OutputDebugString function and to the Debugger::Log method. For information about the OutputDebugString function, see the Platform SDK or MSDN.
The Fail method, by default, displays a message box when the application is running in a user interface mode; it also emits the message using WriteLine.
Note |
|---|
The display of the message box for Assert and Fail method calls depends on the presence of the DefaultTraceListener. If the DefaultTraceListener is not in the Listeners collection, the message box is not displayed. The DefaultTraceListener can be removed by the <clear> element, by the <remove> element, or by calling the Clear method on the Listeners property (System.Diagnostics.Trace.Listeners.Clear()). |
You must enable tracing or debugging to use a trace listener. The following syntax is compiler specific. If you use compilers other than C# or Visual Basic, refer to the documentation for your compiler.
To enable debugging in C#, add the /d:DEBUG flag to the compiler command line when you compile your code, or add #define DEBUG to the top of your file. In Visual Basic, add the /d:DEBUG=True flag to the compiler command line.
To enable tracing in C#, add the /d:TRACE flag to the compiler command line when you compile your code, or add #define TRACE to the top of your file. In Visual Basic, add the /d:TRACE=True flag to the compiler command line.
To add a trace listener, edit the configuration file that corresponds to the name of your application. Within this file, you can add a listener, set its type and set its parameters, remove a listener, or clear all the listeners previously set by the application. The configuration file should be formatted similar to the following example:
<configuration>
<system.diagnostics>
<trace autoflush="false" indentsize="4">
<listeners>
<remove name="Default" />
<add name="myListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="c:\myListener.log" />
</listeners>
</trace>
</system.diagnostics>
</configuration>
The following code example calculates binomial coefficients, which are values used in probability and statistics. This example uses a DefaultTraceListener to trace results and log errors. It creates a new DefaultTraceListener, adds it to the Trace::Listeners collection, and sets the LogFileName property to the log file specified in the command-line arguments.
If an error is detected while processing the input parameter, or if the CalcBinomial function throws an exception, the Fail method logs and displays an error message. If the AssertUiEnabled property is false, the error message is also written to the console. When the result is calculated successfully, the Write(String^) and WriteLine(String^) methods write the results to the log file.
The Fail, Write, and WriteLine methods cause trace information to be written only to the DefaultTraceListener. To write trace information to all listeners in the Trace::Listeners collection, use the Fail, Write, and WriteLine methods of the Trace class.
Available since 1.1
This class is thread safe.




