Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

TraceListener::TraceData Method (TraceEventCache^, String^, TraceEventType, Int32, Object^)

 

Writes trace information, a data object and event information to the listener specific output.

Namespace:   System.Diagnostics
Assembly:  System (in System.dll)

public:
[ComVisibleAttribute(false)]
virtual void TraceData(
	TraceEventCache^ eventCache,
	String^ source,
	TraceEventType eventType,
	int id,
	Object^ data
)

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.

data
Type: System::Object^

The trace data to emit.

System_CAPS_importantImportant

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 eventCache, source, eventType and id parameters in the header and footer of the trace. The data parameter is written as the body of the trace message. The ToString method of the data object is used to convert the object to a String.

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft