Class ScanTotals
Aggregate counters describing what the scan actually looked at.
public sealed class ScanTotals
- Inheritance
-
ScanTotals
- Inherited Members
Constructors
ScanTotals()
public ScanTotals()
Properties
BySeverity
Finding counts by severity, indexed by IntegritySeverity.
public IReadOnlyList<int> BySeverity { get; init; }
Property Value
BytesLeaked
Bytes held by allocated-but-unreachable structures.
public long BytesLeaked { get; init; }
Property Value
ChecksumFailures
Pages whose stored checksum did not match their content.
public int ChecksumFailures { get; init; }
Property Value
ChunksAllocated
Chunks found allocated across every chunk-based segment.
public long ChunksAllocated { get; init; }
Property Value
PagesAllocated
Pages whose occupancy bit is set.
public int PagesAllocated { get; init; }
Property Value
PagesScanned
Pages read and classified.
public int PagesScanned { get; init; }
Property Value
PagesWithSectorFooters
Pages carrying a per-sector verification footer.
public int PagesWithSectorFooters { get; init; }
Property Value
SectorFailures
Sectors that failed verification across all pages.
public int SectorFailures { get; init; }
Property Value
SegmentsWalked
Logical segments discovered and walked.
public int SegmentsWalked { get; init; }