Manifest Class

Namespace: id3.Bioseal

Definition

Provides information about the manifest.
class Manifest
class Manifest implements Finalizable
public partial class Manifest
public class Manifest implements AutoCloseable, Serializable
public class Manifest
typedef struct id3BiosealManifest *ID3_BIOSEAL_MANIFEST;

Usage

manifestInstance = id3bioseal.Manifest()

Explicit destruction

# ...
del manifestInstance
final manifestInstance = sdk.Manifest();
// ...

Explicit destruction

// ...
manifestInstance.dispose()
using (var manifestInstance = new Manifest())
{
   // ...
}

Explicit destruction

var manifestInstance = new Manifest()
// ...
manifestInstance.Dispose()
try (Manifest manifestInstance = new Manifest()) {
// ...
}

Explicit destruction

Manifest manifestInstance = new Manifest();
// ...
manifestInstance.close();
private var manifestInstance: Manifest? = nil
manifestInstance = try Manifest()
ID3_BIOSEAL_MANIFEST hManifest{};
int err = id3BiosealManifest_Initialize(&hManifest);
if (err == ID3_SUCCESS) {
    // ...
    id3BiosealManifest_Dispose(&hManifest);
}

Properties

Name

Type

Description

extensionList

ExtensionList

The extension list.

log

Log

The log.

manifestId

int

The manifest ID in ISO 22385 format.

manifestVersion

int

The manifest version.

supportedLanguages

StringArray

The list of supported languages declared in the manifest.

Methods

Name

Description

getDocumentDescription

Gets the description of the document.

getDocumentName

Gets the name of the document.

load

Loads the manifest.

loadFromFile

Loads the manifest from file.

loadFromString

Loads the manifest.