DiagnosticMonitorTraceListener.TraceEvent Method (TraceEventCache, String, TraceEventType, Int32, String, Object )

 

Writes trace information, a formatted array of objects 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,
    string format,
    params object[] args
)
public:
virtual void TraceEvent(
    TraceEventCache^ eventCache,
    String^ source,
    TraceEventType eventType,
    int id,
    String^ format,
    ... array<Object^>^ args
) override
override TraceEvent : 
        eventCache:TraceEventCache *
        source:string *
        eventType:TraceEventType *
        id:int *
        format:string *
        [<ParamArrayAttribute>] args:Object[] -> unit
Public Overrides Sub TraceEvent (
    eventCache As TraceEventCache,
    source As String,
    eventType As TraceEventType,
    id As Integer,
    format As String,
    ParamArray args As Object()
)

Parameters

  • source
    Type: System.String

    Type: System.String

    A name used to identify the output, typically the name of the application that generated the trace event.

  • format
    Type: System.String

    Type: System.String

    A format string that contains zero or more format items, which correspond to objects in the args array.

  • args
    Type: System.Object[]

    An object array containing zero or more objects to format.

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