System.JSON.Writers.TJsonWriter.IsStartToken

From RAD Studio API Documentation
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 protected
System.JSON.Writers.pas
System.JSON.Writers.hpp
System.JSON.Writers TJsonWriter

Description

Checks if the JSON token is an start token.

IsStartToken returns True when the JSON token is an start token: StartObject, StartArray, StartConstructor. Otherwise, IsStartToken returns False.

See Also