System.JSON.Writers.TJsonTextWriter.WriteEnd

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure WriteEnd(const Token: TJsonToken); override;

C++

virtual void __fastcall WriteEnd(const System::Json::Types::TJsonToken Token)/* overload */;
inline void __fastcall  WriteEnd(System::Json::Types::TJsonContainerType ContainerType){ TJsonWriter::WriteEnd(ContainerType); }
inline void __fastcall  WriteEnd(){ TJsonWriter::WriteEnd(); }

Properties

Type Visibility Source Unit Parent
procedure
function
protected
public
System.JSON.Writers.pas
System.JSON.Writers.hpp
System.JSON.Writers TJsonTextWriter

Description

Writes the end token based on the token. This method does not update the internal state.

  • Token: Writes the specified end token:
    • EndObject: '}'
    • EndArray: ']'
    • EndConstructor: ')'

See Also