namespace DigitalData.Core.Application
{
///
/// Specifies the destination of a message.
///
public enum To
{
///
/// Indicates that the message is intended for the client.
///
Client,
///
/// Indicates that the message is intended for tracing purposes.
///
Trace,
///
/// Indicates that the message is intended for debugging purposes.
///
Debug,
///
/// Indicates that the message is informational.
///
Information,
///
/// Indicates that the message is a warning.
///
Warning,
///
/// Indicates that the message represents an error.
///
Error,
///
/// Indicates that the message represents a critical issue.
///
Critical
}
}