An enum representing the current Token being parsed
in a JSON stream
Namespace:
Couchbase.Lite
Assembly:
Couchbase.Lite (in Couchbase.Lite.dll) Version: 1.4.1-b107
Syntax Members
| Member name | Value | Description |
---|
| None | 0 |
No token
|
| StartObject | 1 |
Start of an object ("{")
|
| StartArray | 2 |
Start of an array ("[")
|
| StartConstructor | 3 |
Start of a JSON constructor
|
| PropertyName | 4 |
An object property name
|
| Comment | 5 |
A comment
|
| Raw | 6 |
Raw JSON
|
| Integer | 7 |
An integer
|
| Float | 8 |
A float
|
| String | 9 |
A string
|
| Boolean | 10 |
A boolean
|
| Null | 11 |
A null token
|
| Undefined | 12 |
An undefined token
|
| EndObject | 13 |
End of an object ("}")
|
| EndArray | 14 |
End of an array ("]")
|
| EndConstructor | 15 |
A constructor end token.
|
| Date | 16 |
A date
|
| Bytes | 17 |
Byte data
|
See Also