System.JSON.TJSONPathParser.IsEof

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property IsEof: Boolean read GetIsEof;

C++

__property bool IsEof = {read=GetIsEof};

Properties

Type Visibility Source Unit Parent
property public
System.JSON.pas
System.JSON.hpp
System.JSON TJSONPathParser

Description

It is True if your previous call to NextToken returned an Eof token, indicating that your iteration through the target JSON path has reached the end of the path. It returns False otherwise.

Note: If you pass an empty string as the target JSON path to the constructor, IsEof is False nonetheless until you call NextToken for the first time.