TraceListener::TraceEvent Method (TraceEventCache, String, TraceEventType, Int32, String)
Writes trace information, a message, and event information to the listener specific output.
Assembly: System (in System.dll)
[ComVisibleAttribute(false)] public: virtual void TraceEvent( TraceEventCache^ eventCache, String^ source, TraceEventType eventType, int id, String^ message )
Parameters
- eventCache
- Type: System.Diagnostics::TraceEventCache
A TraceEventCache object that contains the current process ID, thread ID, and stack trace information.
- source
- Type: System::String
A name used to identify the output, typically the name of the application that generated the trace event.
- eventType
- Type: System.Diagnostics::TraceEventType
One of the TraceEventType values specifying the type of event that has caused the trace.
- id
- Type: System::Int32
A numeric identifier for the event.
- message
- Type: System::String
A message to write.
Important Note: |
|---|
This method is not intended to be called directly by application code but by members of the Debug, Trace, and TraceSource classes to write trace data to output. |
The default implementation writes the values of the source, eventType and id parameters as a header, followed by the message data. The eventCache data is written as a footer, the nature of the output data being dependent on the value of the TraceOutputOptions property.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Important Note: