A JsonObject is an unordered collection of zero or more key/value pairs.
Public Class JsonObject _ Inherits JsonValue _ Implements IDictionary(Of String, JsonValue), _ ICollection(Of KeyValuePair(Of String, JsonValue)), IEnumerable(Of KeyValuePair(Of String, JsonValue)), _ IEnumerable
Dim instance As JsonObject
public class JsonObject : JsonValue, IDictionary<string, JsonValue>, ICollection<KeyValuePair<string, JsonValue>>, IEnumerable<KeyValuePair<string, JsonValue>>, IEnumerable
public ref class JsonObject : public JsonValue, IDictionary<String^, JsonValue^>, ICollection<KeyValuePair<String^, JsonValue^>>, IEnumerable<KeyValuePair<String^, JsonValue^>>, IEnumerable
public class JsonObject extends JsonValue implements IDictionary<String, JsonValue>, ICollection<KeyValuePair<String, JsonValue>>, IEnumerable<KeyValuePair<String, JsonValue>>, IEnumerable
A JsonObject is an unordered collection of zero or more key/value pairs, where each key is a String and each value is a JsonValue, which can be a JsonPrimitive, a JsonArray, or a JsonObject.