JsonValue


Object Hierarchy:

Object hierarchy for JsonValue

Description:

public class JsonValue : Object

Represents one JSON value.

JsonValue is the core type for all JSON data. It can represent objects, arrays, strings, numbers, booleans, and null.

Use factory methods to create values:

    var s = JsonValue.ofString ("hello");
var n = JsonValue.ofInt (42);
var obj = JsonValue.object ()
.put ("name", JsonValue.ofString ("Alice"))
.build ();


Namespace: Vala.Encoding
Package: Valacore

Content:

Static methods:

Methods:

Inherited Members:

All known members inherited from class GLib.Object