namespace DPumpHydr.WinFrmUI.WenSkin.Json { /// /// Specifies the type of JSON token. /// public enum JsonToken { /// /// This is returned by the if a method has not been called. /// None, /// /// An object start token. /// StartObject, /// /// An array start token. /// StartArray, /// /// A constructor start token. /// StartConstructor, /// /// An object property name. /// PropertyName, /// /// A comment. /// Comment, /// /// Raw JSON. /// Raw, /// /// An integer. /// Integer, /// /// A float. /// Float, /// /// A string. /// String, /// /// A boolean. /// Boolean, /// /// A null token. /// Null, /// /// An undefined token. /// Undefined, /// /// An object end token. /// EndObject, /// /// An array end token. /// EndArray, /// /// A constructor end token. /// EndConstructor, /// /// A Date. /// Date, /// /// Byte data. /// Bytes } }