CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
trace_level.h
1#pragma once
2
3#include "system/enum.h"
4
5namespace System { namespace Diagnostics {
8 enum class TraceLevel
9 {
11 Off = 0,
13 Error = 1,
15 Warning = 2,
17 Info = 3,
19 Verbose = 4
20 };
21
22}}
23
24template<>
25struct EnumMetaInfo<System::Diagnostics::TraceLevel>
26{
27 static ASPOSECPP_SHARED_API const std::array<std::pair<System::Diagnostics::TraceLevel, const char_t*>, 5>& values();
28};
29
30
TraceLevel
Specifies what messages to output for the System.Diagnostics.Debug, System.Diagnostics....
Definition: trace_level.h:9
@ Off
Output no tracing and debugging messages.
Definition: db_command.h:9