Defines the level of detail of a message in the message log
enum MessageTypeEnum { Informational = 1, Warning = 2, Error = 8, Fatal = 16, Debug = 32 };
public enum MessageTypeEnum { Informational = 1, Warning = 2, Error = 8, Fatal = 16, Debug = 32 }
Public Enum MessageTypeEnum Informational = 1 Warning = 2 Error = 8 Fatal = 16 Debug = 32 End Enum
|
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
|