Skip to content

Class GuidValue

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

A 128-bit System.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>

objectSandboxValueGuidValue

IEquatable<SandboxValue>, IEquatable<GuidValue>

SandboxValue.Unit, SandboxValue.Type, SandboxValue.FromBool(bool), SandboxValue.FromInt32(int), SandboxValue.FromInt64(long), SandboxValue.FromDouble(double), SandboxValue.FromString(string), SandboxValue.FromGuid(Guid), SandboxValue.FromOpaqueId(string, string), SandboxValue.FromPath(string), SandboxValue.FromUri(string), SandboxValue.FromList(IReadOnlyList<SandboxValue>), SandboxValue.FromList(IReadOnlyList<SandboxValue>, SandboxType), SandboxValue.FromMap(IReadOnlyDictionary<SandboxValue, SandboxValue>, SandboxType, SandboxType), SandboxValue.FromRecord(IReadOnlyList<SandboxValue>), object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()

A 128-bit System.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)

Value Guid

public override SandboxType Type { get; }

SandboxType

public Guid Value { get; init; }

Guid