DiagnosticMonitorTraceListener.TraceEvent Method (TraceEventCache, String, TraceEventType, Int32)
Writes trace and event information to the listener-specific output.
Namespace: Microsoft.WindowsAzure.Diagnostics
Assembly: Microsoft.WindowsAzure.Diagnostics (in Microsoft.WindowsAzure.Diagnostics.dll)
Syntax
public override void TraceEvent(
TraceEventCache eventCache,
string source,
TraceEventType eventType,
int id
)
public:
virtual void TraceEvent(
TraceEventCache^ eventCache,
String^ source,
TraceEventType eventType,
int id
) override
override TraceEvent :
eventCache:TraceEventCache *
source:string *
eventType:TraceEventType *
id:int -> unit
Public Overrides Sub TraceEvent (
eventCache As TraceEventCache,
source As String,
eventType As TraceEventType,
id As Integer
)
Parameters
eventCache
Type: System.Diagnostics.TraceEventCacheType: System.Diagnostics.TraceEventCache
A TraceEventCache object that contains the current process ID, thread ID, and stack trace information.
source
Type: System.StringType: System.String
A name used to identify the output, typically the name of the application that generated the trace event.
eventType
Type: System.Diagnostics.TraceEventTypeType: System.Diagnostics.TraceEventType
One of the TraceEventType values specifying the type of event that has caused the trace.
id
Type: System.Int32Type: System.Int32
A numeric identifier for the event.
Remarks
Warning
This API is not supported in Azure SDK versions 2.5 and higher. Instead, use the diagnostics.wadcfg XML configuration file. For more information, see Collect Logging Data by Using Azure Diagnostics.
See Also
TraceEvent Overload
DiagnosticMonitorTraceListener Class
Microsoft.WindowsAzure.Diagnostics Namespace
Return to top