Event handler for JSON unsigned quadword values
Source position: jsonreader.pp line 82
type TOnJSONQWord = procedure( |
Sender: TObject; |
const AValue: QWord |
) of object; |
Sender |
|
Object that triggered the event |
AValue |
|
Quadword value found in the JSON data |
TOnJSONQWord is an event handler type that is called when a JSON unsigned quadword (64-bit unsigned integer) value is encountered during parsing. The event provides the sender object and the quadword value that was found in the JSON data.
|
Event fired when a JSON quadword value is encountered |