HttpContentHeaderCollection.ContentType 属性

定义

获取或设置 HttpMediaTypeHeaderValue 对象,该对象代表 HTTP 内容上的 HTTP Content-Type 标头的值。

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

适用于

另请参阅