System.JSON.Builders.TJSONIterator.Recurse

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Recurse: Boolean;

C++

bool __fastcall Recurse();

Properties

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

Description

Configures the iterator so that it does not skip the content of an upcoming array or object.

Every time that the iterator reaches a token of type TJsonToken.StartArray or TJsonToken.StartObject, you must call Recurse before your next call to Next, to ensure that the iterator does not skip the whole array or object.

See Also