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