开发者

Can I use Unicode characters in HTTP headers?

Is HTTP headers limited to US-ASCII charset?

Can I use unico开发者_开发问答de characters in HTTP headers?

Edit:

I want to do like this:

WebClient myWebClient = new WebClient();
myWebClient.Headers.Add("Content-Type","یونیکد");


First of all, the header field in your example does not allow what you want; media type names are ASCII.

In theory, HTTP header field values can transport anything; the tricky part is to get all parties (sender, receiver, and intermediates) to agree on the encoding.

Thus, the safe way to do this is to stick to ASCII, and choose an encoding on top of that, such as the one defined in RFC 5987.


Accept-Charset: iso-8859-5, unicode-1-1;q=0.8

http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜