System.JSON.Builders.TJSONCollectionBuilder.TParentCollection.BeginObject

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function BeginObject: TPairs; overload; inline;
function BeginObject(const AKey: string): TPairs; overload; inline;

C++

HIDESBASE TJSONCollectionBuilder::TPairs* __fastcall BeginObject()/* overload */;
HIDESBASE TJSONCollectionBuilder::TPairs* __fastcall BeginObject(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 object value. If this instance of TParentCollection represents a JSON object, the object value is associated with the specified key. It returns an instance of TPairs to define the contents of the object value using method chaining.

See Also