Write a JSON value directly to the stream
Source position: jsonwriter.pp line 117
public procedure TJSONStreamWriter.WriteValue; override; |
aValue: Boolean |
); override; |
aValue: Integer |
); override; |
aValue: Int64 |
); override; |
aValue: Double |
); override; |
const aValue: string |
); override; |
aValue |
|
The value to write to the JSON stream |
aValue |
|
The value to write to the JSON stream |
aValue |
|
The value to write to the JSON stream |
aValue |
|
The value to write to the JSON stream |
aValue |
|
The value to write to the JSON stream |
WriteValue writes a JSON value directly to the output stream. This method is overloaded for different data types and formats the values according to JSON syntax. String values are properly escaped and quoted according to the StrictStrings property.
|
Control strict JSON string encoding |