gpt4 book ai didi

c# - 无法在 WebApi 响应中设置 Content-MD5 header

转载 作者:太空宇宙 更新时间:2023-11-03 18:08:10 24 4
gpt4 key购买 nike

当我尝试设置 Content-MD5 -标题我得到这个异常

System.InvalidOperationException wurde nicht von Benutzercode behandelt.
HResult=-2146233079
Message=Misused header name. Make sure request headers are used with HttpRequestMessage, response headers with HttpResponseMessage, and content headers with HttpContent objects.
Source=System.Net.Http
StackTrace:
bei System.Net.Http.Headers.HttpHeaders.CheckHeaderName(String name)
bei System.Net.Http.Headers.HttpHeaders.Add(String name, String value)
bei caching_test.Controllers.ValuesController.Get(Int32 id) in C:\Users\ulbricht\Documents\Bitbucket\caching-system\caching test\Controllers\ValuesController.cs:Zeile 35.
bei lambda_method(Closure , Object , Object[] )
bei System.Web.Http.Controllers.ReflectedHttpActionDescriptor.ActionExecutor.<>c__DisplayClass13.<GetExecutor>b__c(Object instance, Object[] methodParameters)
bei System.Web.Http.Controllers.ReflectedHttpActionDescriptor.ActionExecutor.Execute(Object instance, Object[] arguments)
bei System.Web.Http.Controllers.ReflectedHttpActionDescriptor.<>c__DisplayClass5.<ExecuteAsync>b__4()
bei System.Threading.Tasks.TaskHelpers.RunSynchronously[TResult](Func`1 func, CancellationToken cancellationToken)
InnerException:

这是异常(exception)的部分
public HttpResponseMessage Get(int id)
{
var result = "value" + id;
var hash = Convert.ToBase64String(MD5.Create().ComputeHash(UTF8Encoding.UTF8.GetBytes(result)));
if (Request.Headers.FirstOrDefault(h => h.Key == "Content-MD5").Value != null)
{
var hashvalue = Request.Headers.FirstOrDefault(h => h.Key == "Content-MD5").Value.FirstOrDefault();
if (hashvalue == hash)
{
return Request.CreateResponse(HttpStatusCode.NotModified);
}
}
var response = Request.CreateResponse(HttpStatusCode.OK, result);
response.Headers.Add("Content-MD5", hash); // <------- Here comes the error
return response;
}

这里是源代码 https://bitbucket.org/Knerd/caching-system我希望你能帮助我。

最佳答案

或者,您甚至可以使用为此目的明确设计的 header 属性。不需要魔术字符串。

response.Content.Headers.ContentMD5 = MD5.Create().ComputeHash(UTF8Encoding.UTF8.GetBytes(result));

关于c# - 无法在 WebApi 响应中设置 Content-MD5 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22256470/

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