System.JSON.Builders.TJSONCollectionBuilder.TParentCollection.BeginArray

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function BeginArray: TElements; overload; inline;
function BeginArray(const AKey: string): TElements; overload; inline;

C++

HIDESBASE TJSONCollectionBuilder::TElements* __fastcall BeginArray()/* overload */;
HIDESBASE TJSONCollectionBuilder::TElements* __fastcall BeginArray(const System::UnicodeString AKey)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
System.JSON.Builders.pas
System.JSON.Builders.hpp
System.JSON.Builders TParentCollection

Description

Starts an array value. If this instance of TParentCollection represents a JSON object, the array is associated with the specified key. It returns an instance of TElements to define the contents of the array value using method chaining.

See Also