marker_series::write_message Method

Note

This article applies to Visual Studio 2015. If you're looking for the latest Visual Studio documentation, see Visual Studio documentation. We recommend upgrading to the latest version of Visual Studio. Download it here

Writes a message to the Concurrency Visualizer trace file.

Syntax

void write_message(  
   _In_ LPCTSTR _Format,  
   ...  
);  
void write_message(  
   marker_importance _Importance,  
   _In_ LPCTSTR _Format,  
   ...  
);  
void write_message(  
   int _Category,  
   _In_ LPCTSTR _Format,  
   ...  
);  
void write_message(  
   marker_importance _Importance,  
   int _Category,  
   _In_ LPCTSTR _Format,  
   ...  
);  

Parameters

_Format
A composite format string that contains text intermixed with zero or more format items, which correspond to objects in the argument list.

_Importance
Importance level.

_Category
Category.Importance level.

Requirements

Header: cvmarkersobj.h

Namespace: Concurrency::diagnostic

See Also

marker_series Class