get method

LogItem get(
  1. int index
)

Gets an item of the Log object.

param index Index of the LogItem item to get. return LogItem item to get. throws BiosealException An error has occurred during Bioseal Library execution.

Implementation

LogItem get(int index) {
  LogItem logItemItem = LogItem();
  var err = biosealSDK.id3BiosealLog_Get(_pHandle.value, index, logItemItem.handle);
  if (err != BiosealError.success.value) {
    logItemItem.dispose();
    throw BiosealException(err);
  }
  return logItemItem;
}