IniLikeGroup.setEscapedValue - multiple declarations
Function IniLikeGroup.setEscapedValue
Set value associated with key.
final string setEscapedValue
(
string key,
string value,
IniLikeGroup . InvalidKeyPolicy invalidKeyPolicy = cast(InvalidKeyPolicy)cast(ubyte)0u
) @safe;
Parameters
| Name | Description |
|---|---|
| key | Key to associate value with. |
| value | Value to set. Must be in escaped form. |
| invalidKeyPolicy | Policy about invalid keys. |
Throws
IniLikeEntryException if key or value is not valid or value needs to be escaped.
See Also
Function IniLikeGroup.setEscapedValue
Set value associated with key and locale.
final string setEscapedValue
(
string key,
string locale,
string value,
IniLikeGroup . InvalidKeyPolicy invalidKeyPolicy = cast(InvalidKeyPolicy)cast(ubyte)0u
) @safe;
Throws
IniLikeEntryException if key or value is not valid or value needs to be escaped.