Enum ValidationSeverity
- Namespace
- Stratara.Abstractions.Validation
- Assembly
- Stratara.Abstractions.dll
Severity of a single ValidationFailure. Only Error blocks the pipeline; Warning and Info pass through and are logged.
public enum ValidationSeverity
- Extension Methods
Fields
Error = 0The failure blocks the request — the mediator pipeline throws and the handler never runs.
Info = 2A purely informational note; the request still reaches the handler. Logged for the operator.
Warning = 1A non-blocking advisory; the request still reaches the handler. Logged for the operator.