| NLogTraceListenerTraceData Method (TraceEventCache, String, TraceEventType, Int32, Object) |
Writes trace information, an array of data objects and event information to the listener specific output.
Namespace:
NLog
Assembly:
NLog (in NLog.dll) Version: 5.3.4+73d83d3161d31288ca5c554cc50d27b6bed5f28b
Syntax public override void TraceData(
TraceEventCache eventCache,
string source,
TraceEventType eventType,
int id,
params Object[] data
)
Public Overrides Sub TraceData (
eventCache As TraceEventCache,
source As String,
eventType As TraceEventType,
id As Integer,
ParamArray data As Object()
)
Dim instance As NLogTraceListener
Dim eventCache As TraceEventCache
Dim source As String
Dim eventType As TraceEventType
Dim id As Integer
Dim data As Object()
instance.TraceData(eventCache, source,
eventType, id, data)
abstract TraceData :
eventCache : TraceEventCache *
source : string *
eventType : TraceEventType *
id : int *
data : Object[] -> unit
override TraceData :
eventCache : TraceEventCache *
source : string *
eventType : TraceEventType *
id : int *
data : Object[] -> unit
Parameters
- eventCache
- Type: System.DiagnosticsTraceEventCache
A TraceEventCache object that contains the current process ID, thread ID, and stack trace information. - source
- Type: SystemString
A name used to identify the output, typically the name of the application that generated the trace event. - eventType
- Type: System.DiagnosticsTraceEventType
One of the TraceEventType values specifying the type of event that has caused the trace. - id
- Type: SystemInt32
A numeric identifier for the event. - data
- Type: SystemObject
An array of objects to emit as data.
See Also