Enum JsonType

Namespace
Subsembly.Json
Assembly
Subsembly.Json.dll
public enum JsonType

Fields

Array = 2

A JSON array represented as a plain array where all elements are JsonValue instances.

Boolean = 5

A boolean value represented as a System.Boolean value.

Null = 0

A null value that has no internal representation.

Number = 4

A numeric value represented as a System.Double value.

Object = 1

A JSON object represented as a IDictionary<string, JsonValue> instance.

String = 3

A string value represented as a System.String value.

Undefined = 6

Special value that is returned when accessing a non-existing element in a JsonObject or JsonArray.