Lotl Class

Namespace: id3.Bioseal

Definition

Provides information about the LoTL (List of Trust List).
class Lotl
class Lotl implements Finalizable
public partial class Lotl
public class Lotl implements AutoCloseable, Serializable
public class Lotl
typedef struct id3BiosealLotl *ID3_BIOSEAL_LOTL;

Usage

lotlInstance = id3bioseal.Lotl()

Explicit destruction

# ...
del lotlInstance
final lotlInstance = sdk.Lotl();
// ...

Explicit destruction

// ...
lotlInstance.dispose()
using (var lotlInstance = new Lotl())
{
   // ...
}

Explicit destruction

var lotlInstance = new Lotl()
// ...
lotlInstance.Dispose()
try (Lotl lotlInstance = new Lotl()) {
// ...
}

Explicit destruction

Lotl lotlInstance = new Lotl();
// ...
lotlInstance.close();
private var lotlInstance: Lotl? = nil
lotlInstance = try Lotl()
ID3_BIOSEAL_LOTL hLotl{};
int err = id3BiosealLotl_Initialize(&hLotl);
if (err == ID3_SUCCESS) {
    // ...
    id3BiosealLotl_Dispose(&hLotl);
}

Properties

Name

Type

Description

isTsl

bool

True if the LoTL is a TLS.

log

Log

Get the log.

Methods

Name

Description

getManifestUrl

Returns the URL to the manifest.

getUrl

Returns the URL to the TSL or the next LoTL.