System.JSON.Readers.TJsonReader.IsEndToken

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class function IsEndToken(Token: TJsonToken): Boolean;

C++

__classmethod bool __fastcall IsEndToken(System::Json::Types::TJsonToken Token);

Properties

Type Visibility Source Unit Parent
function public
System.JSON.Readers.pas
System.JSON.Readers.hpp
System.JSON.Readers TJsonReader

Description

Returns True if the specified JSON token marks the end of a JSON item. It returns False otherwise.

IsEndToken returns True for EndArray, EndConstructor and EndObject JSON tokens.

See Also