Lotl.getManifestUrl Method

Module: Lotl

Definition

Returns the URL to the manifest.

get_manifest_url(self, tsl_data: bytearray) -> str

Parameters

tsl_data bytearray
in The TSL data.

Returns

str
The manifest url.

Exceptions

An error has occurred during Bioseal Library execution.
String getManifestUrl(Uint8List? tslData)

Parameters

tslData Uint8List
in The TSL data.

Returns

String
The manifest url.

Exceptions

An error has occurred during Bioseal Library execution.
public string GetManifestUrl(byte[] tslData)

Parameters

tslData byte[]
in The TSL data.

Returns

string
The manifest url.

Exceptions

An error has occurred during Bioseal Library execution.
public String getManifestUrl(byte[] tslData) throws BiosealException

Parameters

tslData byte[]
in The TSL data.

Returns

String
The manifest url.

Exceptions

An error has occurred during Bioseal Library execution.
public func getManifestUrl(tslData: [UInt8]) throws -> String

Parameters

tslData [UInt8]
in The TSL data.

Returns

String
The manifest url.

Exceptions

An error has occurred during Bioseal Library execution.
int id3BiosealLotl_GetManifestUrl (
    ID3_BIOSEAL_LOTL hLotl,
    unsigned char * tslData,
    int tslDataSize,
    char * url,
    int * urlSize)

Parameters

in Handle to the Lotl object.

tslData unsigned char *
in The TSL data.

tslDataSize int
in Size of the ‘tslData’ buffer.

url char *
out The manifest url.

urlSize int *
in Size of the ‘url’ buffer. Receives the minimum required buffer size to hold the ‘url’ string if the given one is too small (including the terminating NULL character), otherwise receives the number of characters in ‘url’ (excluding terminating NULL character).

Returns

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