System.JSON.Builders.TJSONIterator.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create(AReader: TJsonReader); overload;
constructor Create(AReader: TJsonReader; ARewindReader: TRewindReaderProc); overload;

C++

__fastcall TJSONIterator(System::Json::Readers::TJsonReader* AReader)/* overload */;
__fastcall TJSONIterator(System::Json::Readers::TJsonReader* AReader, _di_TRewindReaderProc ARewindReader)/* overload */;

Properties

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

Description

Creates an iterator that you can use to iterate through the contents of the specified JSON reader.

If you need the ability to rewind the iterator or find an item, you must define a procedure to rewind the JSON reader.

See Also