TraceSource.TraceInformation Method (String)
Writes an informational message to the trace listeners in the Listeners collection using the specified message.
Assembly: System (in System.dll)
| Exception | Condition |
|---|---|
| ObjectDisposedException |
An attempt was made to trace an event during finalization. |
The TraceInformation method provides an informational message intended to be read by users and not by tools.
TraceInformation(String) calls the TraceEvent(TraceEventType, Int32, String) method, setting eventType to TraceEventType.Information and passing the informative message as the message string. The TraceEvent(TraceEventType, Int32, String) method in turn calls the TraceEvent(TraceEventCache, String, TraceEventType, Int32, String) method of each trace listener.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
If you create a custom trace listener and override the three TraceEvent signatures of the TraceListener base class and then call the TraceInformation method of a TraceSource you'll see upon debugging that the execution actually jumps into the signature with the params object[] array. TraceEvent(TraceEventCache, string, TraceEventType, int, string, params object[])
- 11/18/2010
- Justin Samsel