Event handler for JSON object key names
Source position: jsonreader.pp line 85
type TOnJSONKey = procedure( |
Sender: TObject; |
const AKey: TJSONStringType |
) of object; |
Sender |
|
Object that triggered the event |
AKey |
|
Object key name found in the JSON data |
TOnJSONKey is an event handler type that is called when a JSON object key name is encountered during parsing. The event provides the sender object and the key name that was found in the JSON object data.
|
Event fired when a JSON object key name is encountered |