System.JSON.TJSONString.Create

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

constructor Create; overload; override;
constructor Create(const Value: string); overload;

C++

__fastcall virtual TJSONString()/* overload */;
__fastcall TJSONString(const System::UnicodeString Value)/* overload */;

Properties

Type Visibility Source Unit Parent
constructor public
System.JSON.pas
System.JSON.hpp
System.JSON TJSONString

Description

Constructor for the TJSONString class.

The implicit version of the Create constructor creates a null JSON string. No further changes to this string are supported.

The other version of the Create constructor creates the JSON string given through the Value argument. This argument cannot be null.

See Also