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 标头都去了哪里?


- Windows 喜欢在 LINUX 中使用 MONO 进行服务开发? 2022-01-01
- 使用 rss + c# 2022-01-01
- 在 LINQ to SQL 中使用 contains() 2022-01-01
- C# 通过连接字符串检索正确的 DbConnection 对象 2022-01-01
- CanBeNull和ReSharper-将其用于异步任务? 2022-01-01
- 为什么 C# 中的堆栈大小正好是 1 MB? 2022-01-01
- 带问号的 nvarchar 列结果 2022-01-01
- 是否可以在 .Net 3.5 中进行通用控件? 2022-01-01
- Azure Active Directory 与 MVC,客户端和资源标识同一 2022-01-01
- 在 C# 中异步处理项目队列 2022-01-01