Microsoft Edge不呈现Pdf流

时间:2015-08-10 05:06:09

标签: c# pdf microsoft-edge

我有以下应用程序将PDF文档作为FileStreamResult返回。 Microsoft Edge不呈现PDF文档。有人知道怎么修这个东西吗?或者这是Microsoft Edge的已知问题?

public FileStreamResult Get()
{
    MemoryStream workStream = new MemoryStream();
    Document document = new Document();
    PdfWriter.GetInstance(document, workStream).CloseStream = false;

    document.Open();
    document.Add( new Paragraph("Hello World") );
    document.Add( new Paragraph( DateTime.Now.ToString() ) );
    document.Close();

    byte[] byteInfo = workStream.ToArray();
    workStream.Write( byteInfo, 0, byteInfo.Length );
    workStream.Position = 0;

    return new FileStreamResult(workStream, "application/pdf");
}

由于 NIRANJAN

1 个答案:

答案 0 :(得分:1)

更新Windows 10新更新后,此问题已得到解决。非常感谢您的回复。