次の方法で共有


HttpContentHeaderCollection.ContentLanguage プロパティ

定義

HTTP コンテンツの HTTP Content-Language ヘッダーの値を表すオブジェクトの HttpLanguageHeaderValueCollection を取得します。

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());
}

適用対象

こちらもご覧ください