[Overview][Constants][Types][Classes][Procedures and functions][Index] |
Set the JSON parser handler
Source position: fpjson.pp line 504
procedure SetJSONParserHandler( |
AHandler: TJSONParserHandler |
); |
AHandler |
|
The new value for the handler |
SetJSONParserHandler can be used to set the JSON parser handler callback. The fpJSON unit does not contain a JSON parser in itself: it contains simply the data structure and the ability to write JSON. The parsing must be done using a separate unit, and is invoked through a callback. SetJSONParserHandler must be used to set this callback.
The jsonparser unit does contain a JSON parser, and must be included once in the project to be able to parse JSON. The jsonparser unit uses the SetJSONParserHandler call to set the callback that is used by GetJSON to parse the data. This is done once at the initialization of that unit, so it is sufficient to include the unit in the uses clause of the program.
|
Get the current JSON parser handler |
|
|
Callback to to parse JSON into JSONData |
|
|
Convert JSON string to JSON data structure |