Write a JSON value to the current position
Source position: jsonwriter.pp line 88
public procedure TJSONDataWriter.WriteValue( |
aValue: Boolean |
); override; |
aValue: Double |
); override; |
aValue: Int64 |
); override; |
aValue: Integer |
); override; |
const aValue: string |
); override; |
aValue |
|
The value to write to the JSON output |
aValue |
|
The value to write to the JSON output |
aValue |
|
The value to write to the JSON output |
aValue |
|
The value to write to the JSON output |
aValue |
|
The value to write to the JSON output |
WriteValue creates the appropriate TJSONData subclass instance for the value and pushes it onto the internal stack. This method is overloaded for different data types including Boolean, Integer, Int64, Double, and String.
|
Base (abstract) object for all JSON based data types. |