In my case, I used my own winforms control to recognize digitalPersona fingerprints.
When I tried to overload the "OnComplete" method, it came up with "No overload ..."
private void FingerprintVerificationControl_OnComplete(object control, DPFP.FeatureSet featureSet, DPFP.Gui.EventHandlerStatus eventHandlerStatus)
Here is how it looked.
I looked at the assembly and I noticed that the third parameter bound the 'ref' keyword to it. I added it to my code and it worked:
private void FingerprintVerificationControl_OnComplete(object control, DPFP.FeatureSet featureSet, ref DPFP.Gui.EventHandlerStatus eventHandlerStatus)
source
share