Enum
public enum DiagnosticSeverity
Namespace: Moka.Docs.Core.Diagnostics
Diagnostic severity levels.
Fields
| Name | Description |
|---|---|
Error static |
Error that prevents correct output. |
Info static |
Informational message. |
Warning static |
Warning that should be reviewed. |
Error
Error = 2
Error that prevents correct output.
Info
Info = 0
Informational message.
Warning
Warning = 1
Warning that should be reviewed.
View Source
/// <summary>
/// Diagnostic severity levels.
/// </summary>
public enum DiagnosticSeverity
{
/// <summary>Informational message.</summary>
Info,
/// <summary>Warning that should be reviewed.</summary>
Warning,
/// <summary>Error that prevents correct output.</summary>
Error
}