Enum JsonType
public enum JsonType
Fields
Array = 2A JSON array represented as a plain array where all elements are JsonValue instances.
Boolean = 5A boolean value represented as a System.Boolean value.
Null = 0A null value that has no internal representation.
Number = 4A numeric value represented as a System.Double value.
Object = 1A JSON object represented as a IDictionary<string, JsonValue> instance.
String = 3A string value represented as a System.String value.
Undefined = 6Special value that is returned when accessing a non-existing element in a JsonObject or JsonArray.