HttpListenerRequest.ContentType Eigenschaft

Definition

Ruft den MIME-Typ der in der Anforderung enthaltenen Textdaten ab.

public:
 property System::String ^ ContentType { System::String ^ get(); };
public string? ContentType { get; }
public string ContentType { get; }
member this.ContentType : string
Public ReadOnly Property ContentType As String

Eigenschaftswert

Ein String, der den Text des Content-Type-Headers der Anforderung enthält.

Beispiele

Im folgenden Codebeispiel wird die Verwendung dieser Eigenschaft veranschaulicht.

public static void ShowRequestData (HttpListenerRequest request)
{
    if (!request.HasEntityBody)
    {
        Console.WriteLine("No client data was sent with the request.");
        return;
    }
    System.IO.Stream body = request.InputStream;
    System.Text.Encoding encoding = request.ContentEncoding;
    System.IO.StreamReader reader = new System.IO.StreamReader(body, encoding);
    if (request.ContentType != null)
    {
        Console.WriteLine("Client data content type {0}", request.ContentType);
    }
    Console.WriteLine("Client data content length {0}", request.ContentLength64);

    Console.WriteLine("Start of client data:");
    // Convert the data to a string and display it on the console.
    string s = reader.ReadToEnd();
    Console.WriteLine(s);
    Console.WriteLine("End of client data:");
    body.Close();
    reader.Close();
    // If you are finished with the request, it should be closed also.
}
Public Shared Sub ShowRequestData(ByVal request As HttpListenerRequest)
    If Not request.HasEntityBody Then
        Console.WriteLine("No client data was sent with the request.")
        Return
    End If

    Dim body As System.IO.Stream = request.InputStream
    Dim encoding As System.Text.Encoding = request.ContentEncoding
    Dim reader As System.IO.StreamReader = New System.IO.StreamReader(body, encoding)

    If request.ContentType IsNot Nothing Then
        Console.WriteLine("Client data content type {0}", request.ContentType)
    End If

    Console.WriteLine("Client data content length {0}", request.ContentLength64)
    Console.WriteLine("Start of client data:")
    ' Convert the data to a string and display it on the console.
    Dim s As String = reader.ReadToEnd()
    Console.WriteLine(s)
    Console.WriteLine("End of client data:")
    body.Close()
    reader.Close()
    ' If you are finished with the request, it should be closed also.
End Sub

Hinweise

Wenn ein Client Textdaten in eine Anforderung einschließt, deklariert er den MIME-Typ (Multipurpose Internet Mail Extensions) der Textdaten im Content-Type Header. Der Standard-MIME-Typ von Daten, die von einem Webformular mit der POST -Methode zurückgegeben werden, ist application/x-www-form-urlencodedbeispielsweise .

Eine vollständige Liste der Anforderungsheader finden Sie unter Enumeration HttpRequestHeader und RFC 2616, verfügbar unter https://www.rfc-editor.org.

Ist ContentType NULL, wenn in der Anforderung kein Content-Type Header vorhanden ist.

Gilt für:

Weitere Informationen