[This is preliminary documentation and is subject to change.]
Specifies the type of Json token.
Namespace:
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 name | Description | |
---|---|---|
None |
This is returned by the | |
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.
|