Table of Contents

Enum IntegritySeverity

Namespace
Typhon.Engine
Assembly
Typhon.Engine.dll

How bad a finding is. Ordered most-severe first so a numeric comparison ranks findings.

public enum IntegritySeverity

Fields

Advisory = 4

Informational — a condition worth surfacing that is not itself a defect.

DataLoss = 1

Primary data is unreadable. Something the user stored is gone and cannot be regenerated from within the database.

Divergence = 2

A derived structure disagrees with primary data. Repairable by regeneration; no user data is lost.

Fatal = 0

The database cannot be safely opened or traversed. Scanning may have stopped early.

Leak = 3

Space is allocated but unreachable. Wastes capacity; costs no correctness.