Json.JsonValueKind

WTSupported in traditional Synergy on Windows
WNSupported in Synergy .NET on Windows
USupported on UNIX
VSupported on OpenVMS
namespace Json
public enum JsonValueKind

The JsonValueKind enumeration specifies the data type of a JSON value.

Fields

Array

A JSON array.

False

The JSON value false.

Null

The JSON value null.

Number

A JSON number.

Object

A JSON object.

String

A JSON string.

True

The JSON value true.

Undefined

No value.

Discussion

TheJsonValueKind enumeration is defined as follows:

public enum JsonValueKind
    Array, 2
    False, 6
    Null, 7
    Number, 4
    Object, 1
    String, 3
    True, 5
    Undefined, 0
endenum