Example #1
0
        public async Task <FileContentResult> OnGetPdf(int id)
        {
            byte[] pdf = await _pdfService.GetAsPdf(id);

            return(File(pdf, "application/pdf", $"Bug {id}.pdf"));
        }