Specifies the type of token.
| C# | Visual Basic | Visual C++ |
public enum JsonTokenType
Public Enumeration JsonTokenType
public enum class JsonTokenType
| Member | 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.
|