JsonTokenType
Defines the various JSON tokens that make up a JSON text.
Comment = 6
The token type is a comment string.
EndArray = 4
The token type is the end of a JSON array.
EndObject = 2
The token type is the end of a JSON object.
False = 10
The token type is the JSON literal false.
None = 0
There is no value (as distinct from Null).
Null = 11
The token type is the JSON literal null.
Number = 8
The token type is a JSON number.
PropertyName = 5
The token type is a JSON property name.
StartArray = 3
The token type is the start of a JSON array.
StartObject = 1
The token type is the start of a JSON object.
String = 7
The token type is a JSON string.
True = 9
The token type is the JSON literal true.