gpt4 book ai didi

c# - 无法在 asp vNext 中修改 HttpResponse 对象上的原因短语

转载 作者:行者123 更新时间:2023-11-30 14:27:08 24 4
gpt4 key购买 nike

我必须在我的 asp 5 中间件中设置原因短语,而不仅仅是 http 响应消息的状态代码,但我找不到任何方法来做到这一点。Microsoft.AspNet.Http.HttpResponse 类的 StatusCode 属性是一个 int 属性,仅用于修改状态代码,而不是原因文本.

我知道,原因是根据状态代码自动设置的,但在我的情况下,我必须将其设置为自定义值。根据 HTTP RFC 2616 哪个没问题:

[..] The reason phrases listed here are only recommendations -- they MAY be replaced by local equivalents without affecting the protocol. [..]

我目前正在使用 beta-8 版本的 asp 5 框架。

最佳答案

你可以试试:

Response.HttpContext.Features.Get<IHttpResponseFeature>().ReasonPhrase = "some reason";

同时返回原因的 HttpStatusCodeResult 可能如下所示:

public class BadRequestResult : HttpStatusCodeResult
{
private readonly string _reason;

public BadRequestResult(string reason) : base(400)
{
_reason = reason;
}

public override void ExecuteResult(ActionContext context)
{
if (context == null)
{
throw new ArgumentNullException(nameof(context));
}

context.HttpContext.Response.HttpContext.Features.Get<IHttpResponseFeature>().ReasonPhrase = _reason;
context.HttpContext.Response.StatusCode = StatusCode;
}
}

关于c# - 无法在 asp vNext 中修改 HttpResponse 对象上的原因短语,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33695224/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com