TraceSource::TraceInformation Method (String^)
.NET Framework (current version)
Writes an informational message to the trace listeners in the Listeners collection using the specified message.
Assembly: System (in System.dll)
Parameters
- message
-
Type:
System::String^
The informative message to write.
| 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.
.NET Framework
Available since 2.0
Available since 2.0
Show: