HttpContentHeaderCollection.ContentType Proprietà

Definizione

Ottiene o imposta l'oggetto HttpMediaTypeHeaderValue che rappresenta il valore di un'intestazione HTTP Content-Type nel contenuto HTTP.

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

Valore della proprietà

Oggetto che rappresenta il valore di un'intestazione HTTP Content-Type nel contenuto HTTP. Un valore Null indica che l'intestazione è assente.

Commenti

La proprietà ContentType rappresenta il valore dell'intestazione Content-Type nel contenuto HTTP. L'intestazione Content-Type è il tipo MIME del contenuto.

Il codice di esempio seguente illustra un metodo per ottenere o impostare il valore dell'intestazione Content-Type nel contenuto HTTP usando la proprietà ContentType nell'oggetto HttpContentHeaderCollection .

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

Si applica a

Vedi anche