Enum JsonTokenKind
Specifies the kind of JSON token.
Namespace: DevZest.Data.Primitives
Assembly: DevZest.Data.dll
Syntax
[Flags]
public enum JsonTokenKind
Fields
Name | Description |
---|---|
ColumnValues | Token is column values: String, Number, True, False and Null. |
Comma | Token is comma ','. |
CurlyClose | Token is curly close '}'. |
CurlyOpen | Token is curly open '{'. |
Eof | Token is Eof. |
False | Token is 'false' literal. |
Null | Token is 'null' literal. |
Number | Token is number. |
PropertyName | Token is property name. |
SquaredClose | Token is squared close ']'. |
SquaredOpen | Token is squared open '['. |
String | Token is string. |
True | Token is 'true' literal. |