System.JSON.TJSONObject

From RAD Studio API Documentation
Revision as of 10:52, 10 February 2014 by AChavesBot (talk | contribs) (47307.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

System.JSON.TJSONValueSystem.JSON.TJSONAncestorSystem.TObjectTJSONObject

Delphi

TJSONObject = class sealed(TJSONValue)

C++

class PASCALIMPLEMENTATION TJSONObject : /*[[sealed]]*/ public TJSONValue

Properties

Type Visibility Source Unit Parent
class public
System.JSON.pas
System.JSON.hpp
System.JSON System.JSON

Description

Implements a JSON object.

TJSONObject is the class that implements a JSON object.

The Parse method can be used to parse a JSON data stream and store the encountered JSON pairs into the TJSONObject instance.

The ParseJSONValue method can be used to parse a byte array and create the corresponding JSON value from this data.

See Also

Code Examples