FingerTemplateDict.containsKey Method¶
Module: FingerTemplateDict
Definition¶
Determines whether the FingerTemplateDictobject contains the specified key.
contains_key(self, key: str) -> bool
Parameters
key
strin The key to locate in the FingerTemplate object.
Returns
bool
true if the FingerTemplate object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Finger Library execution.
bool containsKey(String? key)
Parameters
key
Stringin The key to locate in the FingerTemplate object.
Returns
bool
true if the FingerTemplate object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Finger Library execution.
public bool ContainsKey(string key)
Parameters
key
stringin The key to locate in the FingerTemplate object.
Returns
bool
true if the FingerTemplate object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Finger Library execution.
public boolean containsKey(String key) throws FingerException
Parameters
key
Stringin The key to locate in the FingerTemplate object.
Returns
boolean
true if the FingerTemplate object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Finger Library execution.
public func containsKey(key: String) throws -> Bool
Parameters
key
Stringin The key to locate in the FingerTemplate object.
Returns
Bool
true if the FingerTemplate object contains an element with the specified key, otherwise false.
Exceptions
An error has occurred during Finger Library execution.
int id3FingerTemplateDict_ContainsKey (
ID3_FINGER_TEMPLATE_DICT hFingerTemplateDict,
const char * key,
bool * result)
Parameters
hFingerTemplateDict
ID3_FINGER_TEMPLATE_DICTin Handle to the FingerTemplateDict object.key
const char *in The key to locate in the FingerTemplate object.result
bool *out true if the FingerTemplate object contains an element with the specified key, otherwise false.
Returns