码迷,mamicode.com
首页 > 其他好文 > 详细

InvalidOperationException: Response Content-Length mismatch

时间:2020-01-09 13:10:19      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:ack   length   异常   memory   方案   exception   operation   file   lex   

 

FileStreamResult 抛出异常:

 

InvalidOperationException: Response Content-Length mismatch

解决方案:

Stream 必须 seek begin

伪代码如下:

 Stream ms = new MemoryStream();
 book.Write(ms);
 ms.Seek(0, SeekOrigin.Begin); //seek begin
 return ms;

 

InvalidOperationException: Response Content-Length mismatch

标签:ack   length   异常   memory   方案   exception   operation   file   lex   

原文地址:https://www.cnblogs.com/CnKker/p/12170660.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!