HttpListenerRequest.ContentType 속성

정의

요청에 포함된 본문 데이터의 MIME 형식을 가져옵니다.

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

속성 값

요청의 Content-Type 헤더 텍스트가 들어 있는 String입니다.

예제

다음 코드 예제에서는이 속성을 사용 하는 방법을 보여 줍니다.

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

설명

클라이언트가 요청에 본문 데이터를 포함하는 경우 헤더에 본문 데이터의 MIME(다목적 인터넷 메일 확장) 형식을 Content-Type 선언합니다. 예를 들어 메서드를 사용하여 POST 웹 양식에서 반환되는 데이터의 기본 MIME 형식은 입니다 application/x-www-form-urlencoded.

요청 헤더의 전체 목록은 에서 https://www.rfc-editor.org사용할 수 있는 HttpRequestHeader 열거형 및 RFC 2616을 참조하세요.

요청에 ContentType 헤더가 없는 Content-Type 경우 은 null입니다.

적용 대상

추가 정보