Click or drag to resize

JsonToken Enumeration

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
C#
public enum JsonToken
Members
  Member nameValueDescription
None0 No token
StartObject1 Start of an object ("{")
StartArray2 Start of an array ("[")
StartConstructor3 Start of a JSON constructor
PropertyName4 An object property name
Comment5 A comment
Raw6 Raw JSON
Integer7 An integer
Float8 A float
String9 A string
Boolean10 A boolean
Null11 A null token
Undefined12 An undefined token
EndObject13 End of an object ("}")
EndArray14 End of an array ("]")
EndConstructor15 A constructor end token.
Date16 A date
Bytes17 Byte data
See Also