Enum ValidationSeverity
- Namespace
- DotCompute.Abstractions.Validation
- Assembly
- DotCompute.Abstractions.dll
Defines severity levels for validation issues. Used across all validation systems to provide consistent severity reporting.
public enum ValidationSeverity
Fields
Critical = 3Critical error that indicates severe issues requiring immediate attention. May indicate potential system instability or data loss.
Error = 2Error that prevents successful compilation or execution. Must be addressed before the operation can proceed.
Info = 0Informational message that provides context or suggestions. Does not prevent compilation or execution.
Warning = 1Warning that indicates potential issues but does not prevent execution. Should be addressed to ensure optimal performance or reliability.