Class GuidValue
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
ValueGuid
Properties
Type
public override SandboxType Type { get; }
Property Value
Value
public Guid Value { get; init; }