Click or drag to resize
Json.NET

JTokenType Enumeration

 
Specifies the type of token.

Namespace:  Newtonsoft.Json.Linq
Assembly:  Newtonsoft.Json (in Newtonsoft.Json.dll) Version: 12.0.1+509643a8952ce731e0207710c429ad6e67dc43db
Syntax
C#
public enum JTokenType
Members
  Member nameValueDescription
None0 No token type has been set.
Object1 A JSON object.
Array2 A JSON array.
Constructor3 A JSON constructor.
Property4 A JSON object property.
Comment5 A comment.
Integer6 An integer value.
Float7 A float value.
String8 A string value.
Boolean9 A boolean value.
Null10 A null value.
Undefined11 An undefined value.
Date12 A date value.
Raw13 A raw JSON value.
Bytes14 A collection of bytes value.
Guid15 A Guid value.
Uri16 A Uri value.
TimeSpan17 A TimeSpan value.
See Also