Enum JSONParserNodeKind

Identifies the kind of a parser node.

enum JSONParserNodeKind : int { ... }

Enum members

NameDescription
arrayEnd The end of an array value
arrayStart The start of an array value
key An object key
literal A literal value (null, boolean, number or string)
none Used internally, never occurs in a node stream
objectEnd The end of an object value
objectStart The start of an object value