We are using the following code to convert an xps file to a pdf
Dim oConverter As New Syncfusion.XPS.XPSToPdfConverter()
Dim oDoc As New Syncfusion.Pdf.PdfDocument(Syncfusion.Pdf.PdfConformanceLevel.None)
oDoc = oConverter.Convert(sXpsPath)
If we add
Syncfusion.Pdf.PdfDocument.EnableThreadSafe = True
at the top of the method will this process then be ok to use in a multi threaded environment?
Many thanks