如何更改ASP.NET Core Web API响应的响应标头的字符集?

时间:2018-12-21 08:01:46

标签: c# api asp.net-core-mvc

我参考以下页面添加了响应头: How to add custom header to ASP.NET Core Web API response

我写道:

 ObjectResult result = new ObjectResult("aaa");
 Request.HttpContext.Response.ContentType = "text/html; charset=shift_jis";
 Request.HttpContext.Response.Headers.Add("IPAddress", "10.11.12.13");
 Request.HttpContext.Response.Headers.Add("name", "Naoki");

我不仅要更改响应主体的字符集,还要更改响应头。例如,“ Naoki”和“ 10.11.12.13”。因为在响应头中的生产数据中插入了双字节字符。

如何在Response Header中更改字符集? 最好的问候。

0 个答案:

没有答案