次の方法で共有


HttpContentHeaderCollection.ContentType プロパティ

定義

HTTP コンテンツの HTTP Content-Type ヘッダーの値を表す HttpMediaTypeHeaderValue オブジェクトを取得または設定します。

public:
 property HttpMediaTypeHeaderValue ^ ContentType { HttpMediaTypeHeaderValue ^ get(); void set(HttpMediaTypeHeaderValue ^ value); };
HttpMediaTypeHeaderValue ContentType();

void ContentType(HttpMediaTypeHeaderValue value);
public HttpMediaTypeHeaderValue ContentType { get; set; }
var httpMediaTypeHeaderValue = httpContentHeaderCollection.contentType;
httpContentHeaderCollection.contentType = httpMediaTypeHeaderValue;
Public Property ContentType As HttpMediaTypeHeaderValue

プロパティ値

HTTP コンテンツの HTTP Content-Type ヘッダーの値を表す オブジェクト。 null 値は、ヘッダーが存在しないことを意味します。

注釈

ContentType プロパティは、HTTP コンテンツの Content-Type ヘッダー値を表します。 Content-Type ヘッダーは、コンテンツの MIME の種類です。

次のサンプル コードは、HttpContentHeaderCollection オブジェクトの ContentType プロパティを使用して、HTTP コンテンツの Content-Type ヘッダー値を取得または設定するメソッドを示しています。

// Content-Type header
// HttpMediaTypeHeaderValue (MediaType, Charset are strings, Parameters is an IList<HttpNameValueHeaderValue>)
//
void DemoContentType(IHttpContent content) {
    var h = content.Headers;
    h.ContentType = new HttpMediaTypeHeaderValue("myMediaType");

    var header = h.ContentType;
    uiLog.Text += "\nCONTENT TYPE HEADER\n";

    // Parameters is an IList<HttpNameValueHeaderValue> of Name/Value strings
    var parameterString = "";
    foreach (var parameter in header.Parameters) {
            parameterString += string.Format("[{0}={1}] ", parameter.Name, parameter.Value);
    }
    if (parameterString == "") {
            parameterString = "(no parameters)";
    }

    uiLog.Text += string.Format("Content-Type: MediaType: {0} CharSet: {1} Parameters: {2} ToString: {3}\n", header.MediaType, header.CharSet, parameterString, header.ToString());
}

適用対象

こちらもご覧ください