Enum PageBlockFlags
Bit flags stamped in the first byte of a page's PageBaseHeader, describing the page's role in a logical segment.
[Flags]
public enum PageBlockFlags : byte
Fields
IsFree = 1The page is free — not allocated to any segment.
IsLogicalSegment = 2The page belongs to a logical segment.
IsLogicalSegmentRoot = 4The page is the root page of its logical segment.
None = 0No flags set.