Extension.get Method

Module: Extension

Definition

Gets an item of the Extension object.

get(self, key: str) -> str

Parameters

key str
in Unique key of the item to get.

Returns

str
item to get.

Exceptions

An error has occurred during Bioseal Library execution.
String get(String? key)

Parameters

key String
in Unique key of the item to get.

Returns

String
item to get.

Exceptions

An error has occurred during Bioseal Library execution.
public string Get(string key)

Parameters

key string
in Unique key of the item to get.

Returns

string
item to get.

Exceptions

An error has occurred during Bioseal Library execution.
public String get(String key) throws BiosealException

Parameters

key String
in Unique key of the item to get.

Returns

String
item to get.

Exceptions

An error has occurred during Bioseal Library execution.
public func get(key: String) throws -> String

Parameters

key String
in Unique key of the item to get.

Returns

String
item to get.

Exceptions

An error has occurred during Bioseal Library execution.
int id3BiosealExtension_Get (
    ID3_BIOSEAL_EXTENSION hExtension,
    const char * key,
    char * item,
    int * itemSize)

Parameters

in Handle to the Extension object.

key const char *
in Unique key of the item to get.

item char *
out item to get.

itemSize int *
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

int
An error code.
See id3BiosealError file for the list of possible error codes.