This documentation is archived and is not being maintained.
Trace Members
Visual Studio 2008
Provides a set of methods and properties that help you trace the execution of your code. This class cannot be inherited.
The Trace type exposes the following members.
| Name | Description | |
|---|---|---|
|
Assert | Overloaded. Checks for a condition; if the condition is false, outputs messages and displays a message box that shows the call stack. |
|
Close | Flushes the output buffer, and then closes the Listeners. |
|
Equals | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
|
Fail | Overloaded. Emits an error message. |
|
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 | Flushes the output buffer, and causes buffered data to be written to the Listeners. |
|
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
|
GetType | Gets the type of the current instance. (Inherited from Object.) |
|
Indent | Increases the current IndentLevel by one. |
|
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
|
Refresh | Refreshes the trace configuration data. |
|
ToString | Returns a string that represents the current object. (Inherited from Object.) |
|
TraceError | Overloaded. Writes error information to the trace listeners in the Listeners collection. |
|
TraceInformation | Overloaded. Writes an informational message to the trace listeners in the Listeners collection. |
|
TraceWarning | Overloaded. Writes warning information to the trace listeners in the Listeners collection. |
|
Unindent | Decreases the current IndentLevel by one. |
|
Write | Overloaded. Writes information about the trace to the trace listeners in the Listeners collection. |
|
WriteIf | Overloaded. Writes information about the trace to the trace listeners in the Listeners collection if a condition is true. |
|
WriteLine | Overloaded. Writes information about the trace to the trace listeners in the Listeners collection. |
|
WriteLineIf | Overloaded. Writes information about the trace to the trace listeners in the Listeners collection if a condition is true. |
| Name | Description | |
|---|---|---|
|
AutoFlush | Gets or sets whether Flush should be called on the Listeners after every write. |
|
CorrelationManager | Gets the correlation manager for the thread for this trace. |
|
IndentLevel | Gets or sets the indent level. |
|
IndentSize | Gets or sets the number of spaces in an indent. |
|
Listeners | Gets the collection of listeners that is monitoring the trace output. |
|
UseGlobalLock | Gets or sets a value indicating whether the global lock should be used. |
Show: