Table of Contents

Class GuidValue

Namespace
DotBoxD.Kernels.Sandbox
Assembly
DotBoxD.Kernels.dll

A 128-bit Guid carried as a first-class sandbox scalar. The kernel never operates on it (no arithmetic, comparison, or string semantics) — it only reads, stores, projects, and returns it — so it crosses the wire as a compact 16-byte value rather than its 36-char text form.

public sealed record GuidValue : SandboxValue, IEquatable<SandboxValue>, IEquatable<GuidValue>
Inheritance
GuidValue
Implements
Inherited Members

Constructors

GuidValue(Guid)

A 128-bit Guid carried as a first-class sandbox scalar. The kernel never operates on it (no arithmetic, comparison, or string semantics) — it only reads, stores, projects, and returns it — so it crosses the wire as a compact 16-byte value rather than its 36-char text form.

public GuidValue(Guid Value)

Parameters

Value Guid

Properties

Type

public override SandboxType Type { get; }

Property Value

SandboxType

Value

public Guid Value { get; init; }

Property Value

Guid