.NET Framework Class Library for Silverlight
JsonObject Class

A JsonObject is an unordered collection of zero or more key/value pairs.

Namespace:  System.Json
Assembly:  System.Json (in System.Json.dll)
Syntax

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
Visual Basic (Usage)
Dim instance As JsonObject
C#
public class JsonObject : JsonValue, IDictionary<string, JsonValue>, 
    ICollection<KeyValuePair<string, JsonValue>>, IEnumerable<KeyValuePair<string, JsonValue>>, 
    IEnumerable
Remarks

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.

Inheritance Hierarchy

System..::.Object
  System.Json..::.JsonValue
    System.Json..::.JsonObject
Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

See Also

Reference

Tags :


Page view tracker