Share via


Markers.WriteMessage Method (Int32, String, array<Object )

Writes a message to the Concurrency Visualizer trace file with the specified category and text. The text is specified by the format and args parameters.

Namespace:  Microsoft.ConcurrencyVisualizer.Instrumentation
Assembly:  Microsoft.ConcurrencyVisualizer.Markers (in Microsoft.ConcurrencyVisualizer.Markers.dll)

Syntax

'Declaration
Public Shared Sub WriteMessage ( _
    category As Integer, _
    format As String, _
    ParamArray args As Object() _
)
public static void WriteMessage(
    int category,
    string format,
    params Object[] args
)
public:
static void WriteMessage(
    int category, 
    String^ format, 
    ... array<Object^>^ args
)
static member WriteMessage : 
        category:int * 
        format:string * 
        args:Object[] -> unit
public static function WriteMessage(
    category : int, 
    format : String, 
    ... args : Object[]
)

Parameters

  • category
    Type: Int32

    The category of the message. Any integer is valid.

  • format
    Type: String

    A composite format string that contains text intermixed with zero or more format items, which correspond to objects in the args array

  • args
    Type: array<Object[]

    An object array containing zero or more objects to format.

.NET Framework Security

See Also

Reference

Markers Class

WriteMessage Overload

Microsoft.ConcurrencyVisualizer.Instrumentation Namespace