namespace DPumpHydr.WinFrmUI.WenSkin.Json.Linq { /// /// Specifies the type of token. /// public enum JTokenType { /// /// No token type has been set. /// None, /// /// A JSON object. /// Object, /// /// A JSON array. /// Array, /// /// A JSON constructor. /// Constructor, /// /// A JSON object property. /// Property, /// /// A comment. /// Comment, /// /// An integer value. /// Integer, /// /// A float value. /// Float, /// /// A string value. /// String, /// /// A boolean value. /// Boolean, /// /// A null value. /// Null, /// /// An undefined value. /// Undefined, /// /// A date value. /// Date, /// /// A raw JSON value. /// Raw, /// /// A collection of bytes value. /// Bytes, /// /// A Guid value. /// Guid, /// /// A Uri value. /// Uri, /// /// A TimeSpan value. /// TimeSpan } }