[This is preliminary documentation and is subject to change.]

Specifies the type of Json token.

Namespace:  Facebook.Json
Assembly:  Facebook (in Facebook.dll) Version: 0.2009.3.23 (0.2009.3.23)

Syntax

C#
public enum JsonToken
Visual Basic (Declaration)
Public Enumeration JsonToken
Visual C++
public enum class JsonToken

Members

Member nameDescription
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.
Raw
Raw JSON.
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.

See Also

Facebook.Json Namespace