JsonTokenType
This enum defines the various JSON tokens that make up a JSON text and is used by
the Utf8JsonReader when moving from one token to the next.
The Utf8JsonReader starts at 'None' by default. The 'Comment' enum value
is only ever reached in a specific Utf8JsonReader mode and is not
reachable by default.
Comment = 6
Indicates that the token type is the comment string.
EndArray = 4
Indicates that the token type is the end of a JSON array.
EndObject = 2
Indicates that the token type is the end of a JSON object.
False = 10
Indicates that the token type is the JSON literal false.
None = 0
Indicates that there is no value (as distinct from Null).
Null = 11
Indicates that the token type is the JSON literal null.
Number = 8
Indicates that the token type is a JSON number.
PropertyName = 5
Indicates that the token type is a JSON property name.
StartArray = 3
Indicates that the token type is the start of a JSON array.
StartObject = 1
Indicates that the token type is the start of a JSON object.
String = 7
Indicates that the token type is a JSON string.
True = 9
Indicates that the token type is the JSON literal true.