DevicesJson.add Method¶
Module: DevicesJson
Definition¶
Adds an item to the DevicesJson object.
add(self, key: str, item: str) -> None
Parameters
key
strin Unique key of the item to add.item
strin item to add.
Exceptions
An error has occurred during Devices Library execution.
void add(String? key, String? item)
Parameters
key
Stringin Unique key of the item to add.item
Stringin item to add.
Exceptions
An error has occurred during Devices Library execution.
public void Add(string key, string item)
Parameters
key
stringin Unique key of the item to add.item
stringin item to add.
Exceptions
An error has occurred during Devices Library execution.
public void add(String key, String item) throws DevicesException
Parameters
key
Stringin Unique key of the item to add.item
Stringin item to add.
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesJson_Add (
ID3_DEVICES_JSON hDevicesJson,
const char * key,
const char * item)
Parameters
hDevicesJson
ID3_DEVICES_JSONin Handle to the DevicesJson object.key
const char *in Unique key of the item to add.item
const char *in item to add.
Returns