Units
Class Hierarchy
Classes, Interfaces, Objects and Records
Types
Variables
Constants
Functions and Procedures
Identifiers
Grijjy.Bson
type TgoBsonNull = record
Represents the BSON Null value
class operator Implicit(const A: TgoBsonNull): TgoBsonValue; static;
class operator Equal(const A, B: TgoBsonNull): Boolean; static;
class operator NotEqual(const A, B: TgoBsonNull): Boolean; static;
function IsNil: Boolean; inline;
function Clone: TgoBsonNull; inline;
function DeepClone: TgoBsonNull; inline;
function ToBson: TBytes; inline;
function ToJson: String; overload; inline;
function ToJson(const ASettings: TgoJsonWriterSettings): String; overload; inline;
property Value: TgoBsonNull read FImpl;
Implicitly casts a BSON Null to a BSON value.
See TgoBsonValue.Equal
See TgoBsonValue.NotEqual
See TgoBsonValue.IsNil
See TgoBsonValue.Clone
See TgoBsonValue.DeepClone
See TgoBsonValue.ToBson
See TgoBsonValue.ToJson
The Null value singleton
value