I am using MakeSignature.signDetached
method to add digital signature in PDF.
I do sign the PDF in bulk, it works, but after each method call I have to write Thread.Sleep(500)
in order to continue the process, if I do not use Thread.sleep(500)
I have to replug the usb dongle.
This process takes more time to process hundreds of PDFs.
In a nutshell, I would like to know:
- How to improve the performace?
- how can I ignore
Thread.Sleep
statement?