Den Fehler in der WithFlag-Methode behoben und die Enum-Übersetzung integriert.
This commit is contained in:
43
DigitalData.Core.Application/To.cs
Normal file
43
DigitalData.Core.Application/To.cs
Normal file
@@ -0,0 +1,43 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user