HttpListenerRequest.ContentEncoding 속성

정의

요청과 함께 전송된 데이터에 사용할 수 있는 콘텐츠 인코딩을 가져옵니다.

public:
 property System::Text::Encoding ^ ContentEncoding { System::Text::Encoding ^ get(); };
public System.Text.Encoding ContentEncoding { get; }
member this.ContentEncoding : System.Text.Encoding
Public ReadOnly Property ContentEncoding As Encoding

속성 값

Encoding 속성의 데이터와 함께 사용하는 데 적합한 InputStream 개체입니다.

예제

다음 코드 예제는 ContentEncoding 속성입니다.

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

설명

개체를 Encoding 사용하여 바이트 시퀀스를 문자 집합(코드 페이지) 및 문자를 바이트 시퀀스로 변환할 수 있습니다. 이 속성은 헤더의 charset 값을 Content-Type 사용하여 인코딩을 결정합니다. 해당 정보를 사용할 수 없는 경우 이 속성은 를 반환합니다 Encoding.Default.

적용 대상

추가 정보