JsonToken Enumeration

Json.NET

Json.NET - Quick Starts & API Documentation JsonToken Enumeration
NamespacesNewtonsoft.JsonJsonToken
Specifies the type of Json token.
Declaration Syntax
C# Visual Basic Visual C++
public enum JsonToken
Public Enumeration JsonToken
public enum class JsonToken
Members
Member Description
None This is returned by the JsonReader if a Read()()()() method has not been called.
StartObject An object start token.
StartArray An array start token.
StartConstructor A constructor start token.
PropertyName An object property name.
Comment A comment.
Raw Raw JSON.
Integer An integer.
Float A float.
String A string.
Boolean A boolean.
Null A null token.
Undefined An undefined token.
EndObject An object end token.
EndArray An array end token.
EndConstructor A constructor end token.
Date A Date.
Bytes Byte data.

Assembly: Newtonsoft.Json (Module: Newtonsoft.Json) Version: 4.5.0.0 (4.5.6.14930)