Reads a string value from the JSON ini file
Source position: jsonini.pp line 57
public function TJSONIniFile.ReadString( |
const Section: string; |
const Ident: string; |
const Default: string |
):string; override; |
Section |
|
The section name to read from |
Ident |
|
The key name to read |
Default |
|
Default value to return if key not found |
The string value or default if key not found
ReadString reads a string value from the specified section and key. If the key is not found, the Default value is returned. For structured JSON values (objects or arrays), the JSON representation is returned as a string. For other values, the string representation is returned.
|
Writes a string value to the JSON ini file |
|
|
Read a string valued key. |