これはループ中です
aPdf.Save には数分かかる場合があります。
制限時間を60秒に設定したいのですが。
時間がかかる場合は、succUpdate = false; を設定してください。そして続ける
try
{
aPdf = new Aspose.Pdf.Document(docPathIn);
// aPdf.Save will just hang some times and not throw an exception
// if is runs more than 60 seconds I would like to give up and move to the next document
aPdf.Save(MyDirOut + nativeXPSnew, Aspose.Pdf.SaveFormat.Xps);
succUpdate = true;
}
catch (Exception Ex)
{
Debug.WriteLine(Ex.Message);
succUpdate = true;
}
finally
{
aPdf = null;
}