HttpResponseMessage 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
상태 코드와 데이터가 포함된 HTTP 응답 메시지를 나타냅니다.
public ref class HttpResponseMessage : IDisposable
public class HttpResponseMessage : IDisposable
type HttpResponseMessage = class
interface IDisposable
Public Class HttpResponseMessage
Implements IDisposable
- 상속
-
HttpResponseMessage
- 구현
예제
// HttpClient is intended to be instantiated once per application, rather than per-use. See Remarks.
static readonly HttpClient client = new HttpClient();
static async Task Main()
{
// Call asynchronous network methods in a try/catch block to handle exceptions.
try
{
using HttpResponseMessage response = await client.GetAsync("http://www.contoso.com/");
response.EnsureSuccessStatusCode();
string responseBody = await response.Content.ReadAsStringAsync();
// Above three lines can be replaced with new helper method below
// string responseBody = await client.GetStringAsync(uri);
Console.WriteLine(responseBody);
}
catch (HttpRequestException e)
{
Console.WriteLine("\nException Caught!");
Console.WriteLine("Message :{0} ", e.Message);
}
}
open System.Net.Http
// HttpClient is intended to be instantiated once per application, rather than per-use. See Remarks.
let client = new HttpClient()
let main =
task {
// Call asynchronous network methods in a try/catch block to handle exceptions.
try
use! response = client.GetAsync "http://www.contoso.com/"
response.EnsureSuccessStatusCode() |> ignore
let! responseBody = response.Content.ReadAsStringAsync()
// Above three lines can be replaced with new helper method below
// let! responseBody = client.GetStringAsync uri
printfn $"{responseBody}"
with
| :? HttpRequestException as e ->
printfn "\nException Caught!"
printfn $"Message :{e.Message} "
}
main.Wait()
' HttpClient is intended to be instantiated once per application, rather than per-use. See Remarks.
Shared ReadOnly client As HttpClient = New HttpClient()
Private Shared Async Function Main() As Task
' Call asynchronous network methods in a try/catch block to handle exceptions.
Try
Using response As HttpResponseMessage = Await client.GetAsync("http://www.contoso.com/")
response.EnsureSuccessStatusCode()
Dim responseBody As String = Await response.Content.ReadAsStringAsync()
' Above three lines can be replaced with new helper method below
' Dim responseBody As String = Await client.GetStringAsync(uri)
Console.WriteLine(responseBody)
End Using
Catch e As HttpRequestException
Console.WriteLine(Environment.NewLine & "Exception Caught!")
Console.WriteLine("Message :{0} ", e.Message)
End Try
End Function
앞의 코드 예제에서는 진입점을 사용합니다 async Task Main()
. 이 기능을 사용하려면 C# 7.1 이상이 필요합니다.
설명
를 가져오는 HttpResponseMessage 일반적인 방법은 메서드 중 하나에서 가져옵니다 HttpClient.SendAsync(HttpRequestMessage) .
생성자
HttpResponseMessage() |
HttpResponseMessage 클래스의 새 인스턴스를 초기화합니다. |
HttpResponseMessage(HttpStatusCode) |
특정 HttpResponseMessage를 사용하여 StatusCode 클래스의 새 인스턴스를 초기화합니다. |
속성
Content |
HTTP 응답 메시지의 내용을 가져오거나 설정합니다. |
Headers |
HTTP 응답 헤더의 컬렉션을 가져옵니다. |
IsSuccessStatusCode |
HTTP 응답이 성공했는지 여부를 나타내는 값을 가져옵니다. |
ReasonPhrase |
일반적으로 상태 코드와 함께 서버에 의해 전송되는 이유 구문을 가져오거나 설정합니다. |
RequestMessage |
이 응답 메시지를 발생한 요청 메시지를 가져오거나 설정합니다. |
StatusCode |
HTTP 응답의 상태 코드를 가져오거나 설정합니다. |
TrailingHeaders |
HTTP 응답에 포함된 후행 헤더의 컬렉션을 가져옵니다. |
Version |
HTTP 메시지 버전을 가져오거나 설정합니다. |
메서드
Dispose() |
관리되지 않는 리소스를 해제하고, HttpResponseMessage에서 사용하는 관리되지 않는 리소스를 삭제합니다. |
Dispose(Boolean) |
HttpResponseMessage에서 사용하는 관리되지 않는 리소스를 해제하고 관리되는 리소스를 선택적으로 삭제할 수 있습니다. |
EnsureSuccessStatusCode() |
HTTP 응답에 대한 IsSuccessStatusCode 속성이 |
Equals(Object) |
지정된 개체가 현재 개체와 같은지 확인합니다. (다음에서 상속됨 Object) |
GetHashCode() |
기본 해시 함수로 작동합니다. (다음에서 상속됨 Object) |
GetType() |
현재 인스턴스의 Type을 가져옵니다. (다음에서 상속됨 Object) |
MemberwiseClone() |
현재 Object의 단순 복사본을 만듭니다. (다음에서 상속됨 Object) |
ToString() |
현재 개체를 나타내는 문자열을 반환합니다. |
확장 메서드
ToMessage(HttpResponseMessage) |
Message 인스턴스에서 HttpResponseMessage 인스턴스를 만듭니다. |
적용 대상
.NET