MSG_TYPES {Microsoft.VisualBasic.ApplicationServices.Debugging.Logging} .NET clr documentation

MSG_TYPES

Description

Logging levels, the types enumeration of the log file message.

Declare

            
# namespace Microsoft.VisualBasic.ApplicationServices.Debugging.Logging
export class MSG_TYPES extends Enum {
   # The program debug information message.[BLUE]
   [@desc "DEBUG"]
   DEBUG: MSG_TYPES = 9;

   # Specialized Developer Info
   FINEST: MSG_TYPES = 10;

   # The program error information message.[RED]
   [@desc "ERROR"]
   ERR: MSG_TYPES = 12;

   # Warnning message from the program.[YELLOW]
   [@desc "WARNG"]
   WRN: MSG_TYPES = 14;

   # The normal information message.[WHITE]
   [@desc "INFOM"]
   INF: MSG_TYPES = 15;

}

        

.NET clr type reference tree

  1. this class extends from Enum class: Enum
  2. use by field member DEBUG: MSG_TYPES
  3. use by field member FINEST: MSG_TYPES
  4. use by field member ERR: MSG_TYPES
  5. use by field member WRN: MSG_TYPES
  6. use by field member INF: MSG_TYPES

[Package {$package} version {$version} Index]