我有一个中间件,它会从客户端隐藏异常并在出现任何异常时返回500错误:
public class ExceptionHandlingMiddleware
{
private readonly RequestDelegate _next;
public ExceptionHandlingMiddleware(RequestDelegate next)
{
_next = next;
}
public async Task Invoke(HttpContext context)
{
try
{
await _next.Invoke(context);
}
catch (Exception exception)
{
var message = "Exception during processing request";
using (var writer = new StreamWriter(context.Response.Body))
{
context.Response.StatusCode = 500; //works as it should, response status 500
await writer.WriteAsync(message);
context.Response.StatusCode = 500; //response status 200
}
}
}
}
我的问题是,如果我在写主体之前设置响应状态,客户端将看到此状态,但如果我在向主体写入消息后设置状态,则客户端将收到状态为200的响应。
有人能解释我为什么会这样吗?
P.S。我正在使用ASP.NET Core 1.1
答案 0 :(得分:10)
当你知道HTTP如何工作时,那就是设计。
标题位于数据流的开头(请参阅wiki example)。发送数据后,您无法更改/修改标题,因为数据已通过网络发送。
如果您想稍后设置它,则必须缓冲整个响应,但这会增加内存使用量。这里a sample介绍了如何将流交换为内存流。