I'm a developer currently using PDF Focus .Net in a WPF application that follows the MVVM pattern.
While working with the PdfFocus.NotifyPageProgress event and the PageProgressDelegate, I encountered a limitation when converting multiple PDF files simultaneously. Since the delegate only provides int current and int total parameters, it's difficult to distinguish which file is currently being processed when multiple conversions are running in parallel.
public delegate void PageProgressDelegate(
int current,
int total
)
It seems that a parameter is missing to differentiate between different files.