SeverityType Enumeration |
Types of message severities.
Namespace: PostSharp.Extensibility
Assembly: PostSharp (in PostSharp.dll) Version: 2023.0.3.0 (2023.0.3.0)
C#
public enum SeverityType
Member name | Value | Description | |
---|---|---|---|
Debug | 0 | Debugging information (typically trace). | |
Verbose | 1 | Verbose (information of low importance). | |
Info | 2 | Information. Error messages of this severity are not shown in Visual Studio's Error List. | |
ImportantInfo | 3 | Important information. It is shown in Visual Studio's Error List under Messages. | |
CommandLine | 4 | Command line. | |
Warning | 5 | Warning. It is shown in Visual Studio's Error List under Warnings. | |
Error | 6 | Error. It is shown in Visual Studio's Error List under Errors. The project build fails. | |
Fatal | 7 | Fatal error. It is shown in Visual Studio's Error List under Errors. The project build fails and ends immediately. | |
None | -1 | No message. |