Enum JsonType
Namespace: Subsembly.Json
Assembly: Subsembly.Json.dll
Syntax
public enum JsonType
Fields
Name | Description |
---|---|
Array | A JSON array represented as a plain array where all elements are JsonValue instances. |
Boolean | A boolean value represented as a System.Boolean value. |
Null | A null value that has no internal representation. |
Number | A numeric value represented as a System.Double value. |
Object | A JSON object represented as a IDictionary<string, JsonValue> instance. |
String | A string value represented as a System.String value. |
Undefined | Special value that is returned when accessing a non-existing element in a JsonObject or JsonArray. |