同时进行多个pdf转word时,转换的进度怎么区分

我使用的是aspose pdf for .net最新版本,请问同时进行多个pdf转word时,转换的进度怎么区分啊? Aspose提供的回调函数里,没有找到与上下文关联的字段来区分是哪一个文件的转换啊?
#include <Windows.h>
#include

#using “…/lib/Aspose.PDF.dll”

using namespace Aspose::Pdf;
using namespace Aspose::Pdf::Devices;
using namespace System::IO;
using namespace System::Reflection;

void ProgressCallBack(UnifiedSaveOptions::ProgressEventHandlerInfo^ eventInfo)
{
if (Aspose::Pdf::ProgressEventType::TotalProgress == eventInfo->EventType)
{
std::cout << “pdf convert progress: (” << eventInfo->Value << “/” << eventInfo->MaxValue << “)\n”;
}
}

void testConvertDoc()
{
Document^ pdfFile = gcnew(Document)(“C:\Users\Administrator\Desktop\test.pdf”);
DocSaveOptions^ saveOptinos = gcnew DocSaveOptions;
saveOptinos->Format = DocSaveOptions::DocFormat::DocX;
saveOptinos->CustomProgressHandler = gcnew UnifiedSaveOptions::ConversionProgressEventHandler(ProgressCallBack);

pdfFile->Save(“C:\Users\Administrator\Desktop\test.docx”, saveOptinos);

}

我使用的是aspose pdf for .net最新版本,请问同时进行多个pdf转word时,转换的进度怎么区分啊? Aspose提供的回调函数里,没有找到与上下文关联的字段来区分是哪一个文件的转换啊?
#include <Windows.h>
#include

#using “…/lib/Aspose.PDF.dll”

using namespace Aspose::Pdf;
using namespace Aspose::Pdf::Devices;
using namespace System::IO;
using namespace System::Reflection;

void ProgressCallBack(UnifiedSaveOptions::ProgressEventHandlerInfo^ eventInfo)
{
if (Aspose::Pdf::ProgressEventType::TotalProgress == eventInfo->EventType)
{
std::cout << “pdf convert progress: (” << eventInfo->Value << “/” << eventInfo->MaxValue << “)\n”;
}
}

void testConvertDoc()
{
Document^ pdfFile = gcnew(Document)(“C:\Users\Administrator\Desktop\test.pdf”);
DocSaveOptions^ saveOptinos = gcnew DocSaveOptions;
saveOptinos->Format = DocSaveOptions::DocFormat::DocX;
saveOptinos->CustomProgressHandler = gcnew UnifiedSaveOptions::ConversionProgressEventHandler(ProgressCallBack);

pdfFile->Save(“C:\Users\Administrator\Desktop\test.docx”, saveOptinos);

}

@SalesDhorde

我们已在内部问题跟踪系统中打开以下新票证,并将根据 Free Support Policies 中提到的条款提供修复。

问题 ID:PDFNET-56071

如果您需要优先支持,以及直接联系我们的付费支持管理团队,您可以获取 Paid Support Services

The issues you have found earlier (filed as PDFNET-56071) have been fixed in Aspose.PDF for .NET 24.5.