EventSchemaTraceListener.TraceData Method (TraceEventCache, String, TraceEventType, Int32, Object)
Writes trace information, a single data object, and event information to the log file.
Assembly: System.Core (in System.Core.dll)
public override void TraceData( TraceEventCache eventCache, string source, TraceEventType eventType, int id, Object data )
Parameters
- eventCache
- Type: System.Diagnostics.TraceEventCache
A TraceEventCache that contains the current process ID, thread ID, and stack trace information.
- source
- Type: System.String
The source name.
- eventType
- Type: System.Diagnostics.TraceEventType
One of the TraceEventType values.
- id
- Type: System.Int32
A numeric identifier for the event.
- data
- Type: System.Object
A data object to emit.
The eventCache, source, eventType, and id parameters are used in the header and footer of the trace. The id parameter is converted to an unsigned integer before it is written. Therefore, a negative id value is written as a large positive integer. The data parameter is written as a Data node in the UserData element. The ToString method of the data object is used to convert the object to a string.
Important
|
|---|
|
This method is not intended to be called directly by application code. It is called by methods of the Debug, Trace, and TraceSource classes to write trace data. |
Windows 7, Windows Vista SP1 or later, Windows XP SP3, 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.
Important