Click or drag to resize
Json.NET

JsonToken Enumeration

 
Specifies the type of JSON token.

Namespace:  Newtonsoft.Json
Assembly:  Newtonsoft.Json (in Newtonsoft.Json.dll) Version: 12.0.1+509643a8952ce731e0207710c429ad6e67dc43db
Syntax
C#
public enum JsonToken
Members
  Member nameValueDescription
None0 This is returned by the JsonReader if a read method has not been called.
StartObject1 An object start token.
StartArray2 An array start token.
StartConstructor3 A constructor start token.
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 An object end token.
EndArray14 An array end token.
EndConstructor15 A constructor end token.
Date16 A Date.
Bytes17 Byte data.
See Also