Represents a JSON object.

Namespace: Newtonsoft.Json.Linq
Assembly: Newtonsoft.Json (in Newtonsoft.Json.dll) Version: 4.5.0.0 (4.5.11.15729)

Syntax

Examples

CopyParsing a JSON Object from Text
1string json = @"{
2  CPU: 'Intel',
3  Drives: [
4    'DVD read/writer',
5    '500 gigabyte hard drive'
6  ]
7}";
8
9JObject o = JObject.Parse(json);

Inheritance Hierarchy

See Also