In a piece of code with an old version of DynamicPdfConverter, we used :
var converter = new WordConverter(filename, options)
converter.ConvertAsync(newFilePath);
if (we're converting a corrupt file or a 1 GB file and the converter is not done after 10 seconds)
converter.AbortConversion();
I downloaded the latest version of DynamicPdfConverter, and the AbortConversion() method doesn't exist anymore.
What should I do to get a similar behaviour ?
Thanks !
Yves