DevicesJson.containsKey Method¶
Module: DevicesJson
Definition¶
Determines whether the DevicesJsonobject contains the specified key.
contains_key(self, key: str) -> bool
Parameters
keystrin The key to locate in the object.
Returns
booltrue if the object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Devices Library execution.
bool containsKey(String? key)
Parameters
keyStringin The key to locate in the object.
Returns
booltrue if the object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Devices Library execution.
public bool ContainsKey(string key)
Parameters
keystringin The key to locate in the object.
Returns
booltrue if the object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Devices Library execution.
public boolean containsKey(String key) throws DevicesException
Parameters
keyStringin The key to locate in the object.
Returns
booleantrue if the object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesJson_ContainsKey (
    ID3_DEVICES_JSON hDevicesJson,
    const char * key,
    bool * result)
Parameters
hDevicesJsonID3_DEVICES_JSONin Handle to the DevicesJson object.keyconst char *in The key to locate in the object.resultbool *out true if the object contains an element with the specified key, otherwise false.
Returns