[This is preliminary documentation and is subject to change.]
Specifies the type of token.
Namespace:
Assembly: Facebook (in Facebook.dll) Version: 0.2009.3.23 (0.2009.3.23)
Syntax
C# |
---|
public enum JsonTokenType |
Visual Basic (Declaration) |
---|
Public Enumeration JsonTokenType |
Visual C++ |
---|
public enum class JsonTokenType |
Members
Member name | Description | |
---|---|---|
None |
No token type has been set.
| |
Object |
A JSON object.
| |
Array |
A JSON array.
| |
Constructor |
A JSON constructor.
| |
Property |
A JSON object property.
| |
Comment |
A comment.
| |
Integer |
An integer value.
| |
Float |
A float value.
| |
String |
A string value.
| |
Boolean |
A boolean value.
| |
Null |
A null value.
| |
Undefined |
An undefined value.
| |
Date |
A date value.
| |
Raw |
A raw JSON value.
|