Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

enum System.​Text.​Json.​JsonValueKind

Assembly: System.Text.Json

Specifies the data type of a JSON value.

Values

Undefined
There is no value (as distinct from <see cref="F:System.Text.Json.JsonValueKind.Null" /> ).
Object
A JSON object.
Array
A JSON array.
String
A JSON string.
Number
A JSON number.
True
The JSON value true.
False
The JSON value false.
Null
The JSON value null.