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