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