Skip to main content
Table of Contents

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

The failure blocks the request — the mediator pipeline throws and the handler never runs.

Info = 2

A purely informational note; the request still reaches the handler. Logged for the operator.

Warning = 1

A non-blocking advisory; the request still reaches the handler. Logged for the operator.