System.JSON.Writers.TJsonWriter.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 protected
System.JSON.Writers.pas
System.JSON.Writers.hpp
System.JSON.Writers TJsonWriter

Description

Checks if the JSON token is an end token.

IsEndToken returns True when the JSON token is an end token: EndObject, EndArray, EndConstructor. Otherwise, IsEndToken returns False.

See Also