EventSchemaTraceListener.TraceData Method (TraceEventCache, String, TraceEventType, Int32, Object[])
Writes trace information, multiple data objects, and event information to the log file.
Namespace: System.Diagnostics
Assembly: System.Core (in System.Core.dll)
public override void TraceData( TraceEventCache eventCache, string source, TraceEventType eventType, int id, params 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[]
An array of data objects 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 objects in the data parameter array are written as Data nodes in the UserData element. The ToString method of each 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 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Important