Json.NET - Quick Starts & API Documentation
JsonToken Enumeration
NamespacesNewtonsoft.JsonJsonToken
Specifies the type of Json token.
Declaration Syntax
C#Visual BasicVisual C++
public enum JsonToken
Public Enumeration JsonToken
public enum class JsonToken
Members
MemberDescription
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
An object property name.

PropertyName
A constructor end token.

Comment
A comment.

Integer
An interger.

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 start token.

Date
A Date.

Assembly: Newtonsoft.Json (Module: Newtonsoft.Json) Version: 3.0.0.0 (3.0.0.0)