System.JSON.Readers.TJsonReader.IsStartToken

From RAD Studio API Documentation
Revision as of 15:24, 29 September 2015 by AChaves (talk | contribs) (RS-66774)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Delphi

class function IsStartToken(Token: TJsonToken): Boolean;

C++

__classmethod bool __fastcall IsStartToken(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 beginning of a JSON item. It returns False otherwise.

IsStartToken returns True for StartArray, StartConstructor and StartObject JSON tokens.

See Also