Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Writes a flag to the Concurrency Visualizer trace file with the specified importance level, 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
public static void WriteFlag(
    Importance level,
    int category,
    string format,
    params object[] args
)
public:
static void WriteFlag(
    Importance level,
    int category,
    String^ format,
    ... array<Object^>^ args
)
static member WriteFlag : 
        level:Importance *
        category:int *
        format:string *
        [<ParamArrayAttribute>] args:Object[] -> unit
Public Shared Sub WriteFlag (
    level As Importance,
    category As Integer,
    format As String,
    ParamArray args As Object()
)
Parameters
- level 
 Type: Microsoft.ConcurrencyVisualizer.Instrumentation.Importance- The importance level of the flag. 
- category 
 Type: System.Int32- The category of the flag. Any integer is valid. 
- format 
 Type: System.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: System.Object[]- An object array containing zero or more objects to format. 
See Also
WriteFlag Overload
Markers Class
Microsoft.ConcurrencyVisualizer.Instrumentation Namespace
Return to top