A JsonObject is an unordered collection of zero or more key/value pairs.
Namespace:
System.Json
Assembly:
System.Json (in System.Json.dll)
Visual Basic (Declaration)
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
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.
System..::.Object
System.Json..::.JsonValue
System.Json..::.JsonObject
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.
Reference