Table of Contents

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 = 3

Critical error that indicates severe issues requiring immediate attention. May indicate potential system instability or data loss.

Error = 2

Error that prevents successful compilation or execution. Must be addressed before the operation can proceed.

Info = 0

Informational message that provides context or suggestions. Does not prevent compilation or execution.

Warning = 1

Warning that indicates potential issues but does not prevent execution. Should be addressed to ensure optimal performance or reliability.