Event handler for JSON string values
Source position: jsonreader.pp line 84
type TOnJSONString = procedure( |
Sender: TObject; |
const AValue: TJSONStringType |
) of object; |
Sender |
|
Object that triggered the event |
AValue |
|
String value found in the JSON data |
TOnJSONString is an event handler type that is called when a JSON string value is encountered during parsing. The event provides the sender object and the string value that was found in the JSON data.
|
Event fired when a JSON string value is encountered |