Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

enum Newtonsoft.​Json.​JsonToken

Assembly: Newtonsoft.Json

Specifies the type of JSON token.

Values

None
This is returned by the <see cref="T:Newtonsoft.Json.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.