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