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) .
Http |
HttpResponseMessage 클래스의 새 인스턴스를 초기화합니다. |
Http |
특정 HttpResponseMessage를 사용하여 StatusCode 클래스의 새 인스턴스를 초기화합니다. |
Content |
HTTP 응답 메시지의 내용을 가져오거나 설정합니다. |
Headers |
HTTP 응답 헤더의 컬렉션을 가져옵니다. |
Is |
HTTP 응답이 성공했는지 여부를 나타내는 값을 가져옵니다. |
Reason |
일반적으로 상태 코드와 함께 서버에 의해 전송되는 이유 구문을 가져오거나 설정합니다. |
Request |
이 응답 메시지를 발생한 요청 메시지를 가져오거나 설정합니다. |
Status |
HTTP 응답의 상태 코드를 가져오거나 설정합니다. |
Trailing |
HTTP 응답에 포함된 후행 헤더의 컬렉션을 가져옵니다. |
Version |
HTTP 메시지 버전을 가져오거나 설정합니다. |
Dispose() |
관리되지 않는 리소스를 해제하고, HttpResponseMessage에서 사용하는 관리되지 않는 리소스를 삭제합니다. |
Dispose(Boolean) |
HttpResponseMessage에서 사용하는 관리되지 않는 리소스를 해제하고 관리되는 리소스를 선택적으로 삭제할 수 있습니다. |
Ensure |
HTTP 응답에 대한 IsSuccessStatusCode 속성이 |
Equals(Object) |
지정된 개체가 현재 개체와 같은지 확인합니다. (다음에서 상속됨 Object) |
Get |
기본 해시 함수로 작동합니다. (다음에서 상속됨 Object) |
Get |
현재 인스턴스의 Type을 가져옵니다. (다음에서 상속됨 Object) |
Memberwise |
현재 Object의 단순 복사본을 만듭니다. (다음에서 상속됨 Object) |
To |
현재 개체를 나타내는 문자열을 반환합니다. |
To |
Message 인스턴스에서 HttpResponseMessage 인스턴스를 만듭니다. |
제품 | 버전 |
---|---|
.NET | Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9 |
.NET Framework | 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1 |
.NET Standard | 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1 |
UWP | 10.0 |
.NET 피드백
.NET은(는) 오픈 소스 프로젝트입니다. 다음 링크를 선택하여 피드백을 제공해 주세요.