getBiometricVerificationRules method
Gets the the list of biometric verification rules.
return The list of biometric verification rules. throws BiosealException An error has occurred during Bioseal Library execution.
Implementation
BiometricVerificationRules getBiometricVerificationRules() {
BiometricVerificationRules biometricVerificationRules = BiometricVerificationRules();
var err = biosealSDK.id3Bioseal_GetBiometricVerificationRules(_pHandle.value, biometricVerificationRules.handle);
if (err != BiosealError.success.value) {
biometricVerificationRules.dispose();
throw BiosealException(err);
}
return biometricVerificationRules;
}