Enum JsonToken
Specifies the type of JSON token.
Namespace: Bayat.Json
Assembly: Bayat.Json.Runtime.dll
Syntax
public enum JsonToken
Fields
Name | Description |
---|---|
Boolean | A boolean. |
Bytes | Byte data. |
Comment | A comment. |
Date | A Date. |
EndArray | An array end token. |
EndConstructor | A constructor end token. |
EndObject | An object end token. |
Float | A float. |
Integer | An integer. |
None | This is returned by the JsonReader if a Read() method has not been called. |
Null | A null token. |
PropertyName | An object property name. |
Raw | Raw JSON. |
StartArray | An array start token. |
StartConstructor | A constructor start token. |
StartObject | An object start token. |
String | A string. |
Undefined | An undefined token. |