TraceListener.TraceTransfer Method
Writes trace information, a message, a related activity identity and event information to the listener specific output.
Namespace: System.Diagnostics
Assembly: System (in System.dll)
[ComVisibleAttribute(false)] public virtual void TraceTransfer( TraceEventCache eventCache, string source, int id, string message, Guid relatedActivityId )
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.
- id
- Type: System.Int32
A numeric identifier for the event.
- message
- Type: System.String
A message to write.
- relatedActivityId
- Type: System.Guid
A Guid object identifying a related activity.
Important |
|---|
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 TraceTransfer method is used for the correlation of related traces. The TraceTransfer method calls the TraceEvent method to process the call, with the eventType level set to Transfer and the relatedActivityId Guid as a string appended to the message.
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