System.JSON.TJSONPair.AddDescendant

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure AddDescendant(const Descendant: TJSONAncestor); override;

C++

virtual void __fastcall AddDescendant(TJSONAncestor* const Descendant);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
System.JSON.pas
System.JSON.hpp
System.JSON TJSONPair

Description

Method used by the parser to reconstitute the JSON object structure.

AddDescendant is a method used by the parser to reconstitute the JSON object structure.

The TJSONAncestor object given through the Descendant parameter represents the descendant to be added to the JSON object structure.

See Also