DecryptionArgs.get Method¶
Module: DecryptionArgs
Definition¶
Gets an item of the DecryptionArgs object.
get(self, key: str) -> str
Parameters
keystrin Unique key of the item to get.
Returns
stritem to get.
Exceptions
An error has occurred during Bioseal Library execution.
String get(String? key)
Parameters
keyStringin Unique key of the item to get.
Returns
Stringitem to get.
Exceptions
An error has occurred during Bioseal Library execution.
public string Get(string key)
Parameters
keystringin Unique key of the item to get.
Returns
stringitem to get.
Exceptions
An error has occurred during Bioseal Library execution.
public String get(String key) throws BiosealException
Parameters
keyStringin Unique key of the item to get.
Returns
Stringitem to get.
Exceptions
An error has occurred during Bioseal Library execution.
public func get(key: String) throws -> String
Parameters
keyStringin Unique key of the item to get.
Returns
Stringitem to get.
Exceptions
An error has occurred during Bioseal Library execution.
int id3BiosealDecryptionArgs_Get (
ID3_BIOSEAL_DECRYPTION_ARGS hDecryptionArgs,
const char * key,
char * item,
int * itemSize)
Parameters
hDecryptionArgsID3_BIOSEAL_DECRYPTION_ARGSin Handle to the DecryptionArgs object.keyconst char *in Unique key of the item to get.itemchar *out item to get.itemSizeint *in Size of the ‘item’ buffer. Receives the minimum required buffer size to hold the ‘item’ string if the given one is too small (including the terminating NULL character), otherwise receives the number of characters in ‘item’ (excluding terminating NULL character).
Returns