Enum JsonToken
- Namespace
- Newtonsoft.Json
- Assembly
- Newtonsoft.Json.dll
Specifies the type of Json token.
public enum JsonToken
Fields
Boolean = 10A boolean.
Bytes = 17Byte data.
Comment = 5A comment.
Date = 16A Date.
EndArray = 14An array end token.
EndConstructor = 15A constructor end token.
EndObject = 13An object end token.
Float = 8A float.
Integer = 7An integer.
None = 0This is returned by the JsonReader if a Read() method has not been called.
Null = 11A null token.
PropertyName = 4An object property name.
Raw = 6Raw JSON.
StartArray = 2An array start token.
StartConstructor = 3A constructor start token.
StartObject = 1An object start token.
String = 9A string.
Undefined = 12An undefined token.