HttpContentHeaderCollection.ContentLanguage 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取 对象的 HttpLanguageHeaderValueCollection ,这些对象表示 HTTP 内容上的 HTTP 内容语言 标头的值。
public:
property HttpLanguageHeaderValueCollection ^ ContentLanguage { HttpLanguageHeaderValueCollection ^ get(); };
HttpLanguageHeaderValueCollection ContentLanguage();
public HttpLanguageHeaderValueCollection ContentLanguage { get; }
var httpLanguageHeaderValueCollection = httpContentHeaderCollection.contentLanguage;
Public ReadOnly Property ContentLanguage As HttpLanguageHeaderValueCollection
属性值
对象的集合,这些对象表示 HTTP 内容上的 HTTP 内容语言 标头的值。 空集合表示标头不存在
注解
下面的示例代码演示了一个方法,该方法使用 HttpContentHeaderCollection 对象的 ContentLanguage 属性获取或设置 HTTP 内容的 Content-Language 标头值。
// Content-Language header
// HttpLanguageHeaderValueCollection (of Windows.Globalization.Language)
void DemoContentLanguage(IHttpContent content) {
var h = content.Headers;
h.ContentLanguage.TryParseAdd("en-us");
h.ContentLanguage.TryParseAdd("ru-ru, ru-us");
h.ContentLanguage.Add(new Windows.Globalization.Language("ko-ko"));
var header = h.ContentLanguage;
uiLog.Text += "\nCONTENT LANGUAGE HEADER\n";
foreach (var item in header) {
uiLog.Text += string.Format("DisplayName: {0} ToString: {1}\n", item.DisplayName, item.ToString());
}
uiLog.Text += string.Format("ContentLanguage: ToString: {0}\n\n", header.ToString());
}