getUserAuthentication method
Gets the the user authentication parameters.
return The user authentication parameters. throws BiosealException An error has occurred during Bioseal Library execution.
Implementation
UserAuthentication getUserAuthentication() {
UserAuthentication userAuthentication = UserAuthentication();
var err = biosealSDK.id3Bioseal_GetUserAuthentication(_pHandle.value, userAuthentication.handle);
if (err != BiosealError.success.value) {
userAuthentication.dispose();
throw BiosealException(err);
}
return userAuthentication;
}