  | JTokenType Enumeration | 
 
            Specifies the type of token.
            
 
    Namespace: 
   Newtonsoft.Json.Linq
    Assembly:
   Newtonsoft.Json (in Newtonsoft.Json.dll) Version: 12.0.1+509643a8952ce731e0207710c429ad6e67dc43db
Syntax
Members| 
									 
								 | Member name | Value | Description | 
|---|
 | None | 0 | 
            No token type has been set.
             | 
 | Object | 1 | 
            A JSON object.
             | 
 | Array | 2 | 
            A JSON array.
             | 
 | Constructor | 3 | 
            A JSON constructor.
             | 
 | Property | 4 | 
            A JSON object property.
             | 
 | Comment | 5 | 
            A comment.
             | 
 | Integer | 6 | 
            An integer value.
             | 
 | Float | 7 | 
            A float value.
             | 
 | String | 8 | 
            A string value.
             | 
 | Boolean | 9 | 
            A boolean value.
             | 
 | Null | 10 | 
            A null value.
             | 
 | Undefined | 11 | 
            An undefined value.
             | 
 | Date | 12 | 
            A date value.
             | 
 | Raw | 13 | 
            A raw JSON value.
             | 
 | Bytes | 14 | 
            A collection of bytes value.
             | 
 | Guid | 15 | 
            A Guid value.
             | 
 | Uri | 16 | 
            A Uri value.
             | 
 | TimeSpan | 17 | 
            A TimeSpan value.
             | 
See Also