I need to pull pdf's from a different site, additionally the site requires authentication. It looks like the PDF.js library supports xhr withcredentials, how do I specify this when using the Kendo wrapper?
@(Html.Kendo().PDFViewer() .Name("pdfviewer") .PdfjsProcessing(pdf => pdf .File(Url.Content("https://localhost:44335/test.pdf")) ) )