HttpContentHeaderCollection.ContentLanguage 属性

定义

获取 对象的 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());
}

适用于

另请参阅