getPayload method

Field getPayload()

Gets the the payload containing the data specific to the BioSeal.

return The payload containing the data specific to the BioSeal. throws BiosealException An error has occurred during Bioseal Library execution.

Implementation

Field getPayload() {
  Field payload = Field();
  var err = biosealSDK.id3Bioseal_GetPayload(_pHandle.value, payload.handle);
  if (err != BiosealError.success.value) {
    payload.dispose();
    throw BiosealException(err);
  }
  return payload;
}