Table of Contents

Struct DataPointer

Namespace
NominalSystems.Classes
Assembly
NominalSystems.Classes.dll

This structure defines a simulated pointer for a partition of data. This includes the partition the data is located in, the pointer to within that data and also the number of bytes this data includes.

public struct DataPointer

Constructors

DataPointer()

The default constructor for a pointer

public DataPointer()

Fields

IsValid

This flag indicates if the pointer is a valid reference

public bool IsValid

Field Value

bool

Partition

The partition to point to in the data

public int Partition

Field Value

int

Pointer

The pointer in the data storage node where the data exists

public int Pointer

Field Value

int

Size

The number of bytes this pointer refers to inside the data

public int Size

Field Value

int