I just updated to ASP>NET AJAX 2024 Q4 and I get an error in the following code...
string fileName = "SampleFile.xlsx";
IWorkbookFormatProvider formatProvider = new XlsxFormatProvider();
using (Stream output = new FileStream(fileName, FileMode.Create))
{
formatProvider.Export(workbook, output);
}
'formatProvider.Export(workbook, output);' is looking for an additional parameter now 'TimeSpan? timeout'.
I took a guess and entered null and it seems to work.
What are the options for this new parameter?