getManifest method

Manifest getManifest()

Gets the the manifest information.

return The manifest information. throws BiosealException An error has occurred during Bioseal Library execution.

Implementation

Manifest getManifest() {
  Manifest manifest = Manifest();
  var err = biosealSDK.id3Bioseal_GetManifest(_pHandle.value, manifest.handle);
  if (err != BiosealError.success.value) {
    manifest.dispose();
    throw BiosealException(err);
  }
  return manifest;
}