adTempus API
PreviousUpNext
MessageTypeEnum Enumeration

Defines the level of detail of a message in the message log

C++
enum MessageTypeEnum {
  Informational = 1,
  Warning = 2,
  Error = 8,
  Fatal = 16,
  Debug = 32
};
C#
public enum MessageTypeEnum {
  Informational = 1,
  Warning = 2,
  Error = 8,
  Fatal = 16,
  Debug = 32
}
Visual Basic
Public Enum MessageTypeEnum
  Informational = 1
  Warning = 2
  Error = 8
  Fatal = 16
  Debug = 32
End Enum
Members
Members 
Description 
Informational = 1 
An informational message. 
Warning = 2 
A Warning message. 
Error = 8 
An error. 
Fatal = 16 
An exception condition such as an unexpected or fatal error in the application. 
Debug = 32 
A debug message. 
adTempus API Reference version 3.0.0.0, revised 10/30/2008