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 |
---|---|---|
The extension list. |
||
The log. |
||
int |
The manifest ID in ISO 22385 format. |
|
int |
The manifest version. |
|
The list of supported languages declared in the manifest. |
Methods¶
Name |
Description |
---|---|
Gets the description of the document. |
|
Gets the name of the document. |
|
Loads the manifest. |
|
Loads the manifest from file. |
|
Loads the manifest. |