Hi!
I'm trying to read xlsx from Stream and UriFormatException is thrown in method LoadHyperLinks when the file contains either not valid hyperlinks or invalid port.
using (ExcelPackage package = new ExcelPackage(data))
{
ExcelWorksheet worksheet = package.Workbook.Worksheets[1];
//process values in worksheet
}
I don't actually need LoadHyperLinks functionality, because I only have to read the records, process them and then reject the invalid ones, so I have commented this method out and it works now perfectly, but it would be nice if you can take a look at it.
I'm attaching my testing spreadsheet and also StackTrace content.