Json.NET - Quick Starts & API Documentation
JTokenType Enumeration
Namespaces ► Newtonsoft.Json.Linq ► JTokenType
Specifies the type of token.
Declaration Syntax| C# | Visual Basic | Visual C++ |
public enum JTokenType
Public Enumeration JTokenType
public enum class JTokenType
Members| 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.
|
| Raw |
A raw JSON value.
|
| Bytes |
A collection of bytes value.
|