Json.JsonValueKind
Specify a JSON value’s data type
|
WSupported 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
See also
Understanding the Synergy JSON API
Examples
See Understanding the Synergy JSON API for a complete example.
