JSON String value parser handler prototype.
Source position: fpjson.pp line 793
| type TJSONStringParserHandler = procedure( | 
| const aJSON: TJSONStringType; | 
| const AUseUTF8: Boolean; | 
| out Data: TJSONData | 
| ); | 
| aJSON | 
 | JSON string. | 
| AUseUTF8 | 
 | Assume string is in UTF8. | 
| Data | 
 | Resulting TJSONData. | 
TJSONStringParserHandler is the prototype for the handler to conver a JSON string to a TJSONData. It is used in the SetJSONStringParserHandler and GetJSONStringParserHandler calls.
| 
 | Base (abstract) object for all JSON based data types. | |
| 
 | Install a JSON string to JSON Data conversion callback. |