HttpContentHeaderCollection.ContentLanguage プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
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());
}