ErrorSeverity Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Severity of errors provided.
public enum ErrorSeverity
type ErrorSeverity =
Public Enum ErrorSeverity
- Inheritance
-
ErrorSeverity
Fields
| Name | Value | Description |
|---|---|---|
| _Min | 0 | |
| Verbose | 0 | A suggestion about possible high-level improvements or refactoring that may help the user get a better app experience. Examples: performance changes |
| Suggestion | 1 | A suggestion about possible improvements or refactoring that may help the user get a better app experience. Examples: refactoring suggestions. |
| Warning | 2 | A warning about a potential problem. These will typically not prevent normal rule execution. Examples: certain type errors/warnings. |
| Moderate | 3 | A moderate error that may prevent rules from executing properly. Examples: Service unavailable, service schema changed. |
| Severe | 4 | A severe error that will likely prevent rules from executing properly. This type of errors prevents generation of code and publishing. Examples: invocation of unknown functions, invalid names, certain type errors. |
| _Lim | 5 | |
| Critical | 5 | A critical error, e.g. an error that prevents rules from executing properly. This type of errors prevent generation of code and publishing. Example: syntax errors. |