Where all types for http headers gone in ASP.NET 5?(ASP.NET 5 中所有类型的 http 标头都去了哪里?)
问题描述
以前,在 WebApi(在 .NET 4.x 上)中,我们可以通过类型化接口处理请求和响应的标头(请参阅 HttpRequestMessage.Headers/HttpResponseMessage.Headers代码>).现在,在 ASP.NET 5 中,我们有 HttpRequest 和 HttpResponse 以及类型为 IHeaderDictionary 的 Headers 属性.但它只是一个无类型的字典.
Previously, in WebApi (on .NET 4.x) we could work with headers of both the request and the response via typed interfaces (see HttpRequestMessage.Headers/HttpResponseMessage.Headers).
Now, in ASP.NET 5 we have HttpRequest and HttpResponse with Headers property of type IHeaderDictionary. But it's just an untyped Dictionary.
下面我举了一个例子,类型化访问可以返回一个微调的 http-response.需要创建一个 HttpResponseMessage 并填充其 Headers 集合(顺便说一句).
Below I put an example with typed accessing could return a fine-tuned http-response. It's needed to create a HttpResponseMessage and fill its Headers collection (which was typed btw).
HttpResponseMessage response = Request.CreateResponse(HttpStatusCode.OK);
response.Content = new StringContent(manifestContent);
response.Content.Headers.ContentType = new MediaTypeHeaderValue("text/cache-manifest");
response.Headers.CacheControl = new CacheControlHeaderValue {NoCache = true, Public = true};
response.Headers.ETag = new EntityTagHeaderValue(""" + etag + """);
推荐答案
如果为Microsoft.AspNetCore.Http添加using语句,HttpRequest 和 HttpResponse 到 GetTypedHeaders,这应该会为您提供所需的类型安全性.
If you add the using statement for Microsoft.AspNetCore.Http, there are extension methods on the HttpRequest and HttpResponse to GetTypedHeaders, which should give you the type safety that you want.
在示例中,我还添加了 Microsoft.Net.Http.Headers 的 using 语句,只是为了清理它.
In the example, I also added the using statement for Microsoft.Net.Http.Headers, just to clean it up.
var headers = Response.GetTypedHeaders();
headers.ContentType = new MediaTypeHeaderValue("text/cache-manifest");
headers.CacheControl = new CacheControlHeaderValue { NoCache = true, Public = true };
headers.ETag = new EntityTagHeaderValue(""" + etag + """);
来源:aspnet/HttpAbstractions onGithub
这篇关于ASP.NET 5 中所有类型的 http 标头都去了哪里?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:ASP.NET 5 中所有类型的 http 标头都去了哪里?
基础教程推荐
- 更新 Visual Studio 中的 DataSet 结构以匹配新的 SQL 数据库结构 2022-01-01
- SonarQube C# 分析失败“不是指针的有效行偏移" 2022-01-01
- 将数据集转换为列表 2022-01-01
- 在 VB6 或经典 ASP 中使用 .NET 2022-01-01
- Mono https webrequest 失败并显示“身份验证或解密失败" 2022-01-01
- C# 9 新特性——record的相关总结 2023-04-03
- 从 C# 控制相机设备 2022-01-01
- 获取C#保存对话框的文件路径 2022-01-01
- 重新排序 WPF TabControl 中的选项卡 2022-01-01
- 如果条件可以为空 2022-01-01
