在C#中,你可以使用HttpClient
类来发送HTTP请求并获取响应内容。以下是一个简单的示例,展示了如何使用HttpClient
获取HTTP响应内容:
using System;
using System.Net.Http;
using System.Threading.Tasks;
namespace HttpClientExample
{
class Program
{
static async Task Main(string[] args)
{
// 创建一个HttpClient实例
using (HttpClient httpClient = new HttpClient())
{
try
{
// 发送GET请求到指定的URL
HttpResponseMessage response = await httpClient.GetAsync("https://api.example.com/data");
// 确保请求成功
response.EnsureSuccessStatusCode();
// 获取响应内容
string responseBody = await response.Content.ReadAsStringAsync();
// 输出响应内容
Console.WriteLine("Response content:");
Console.WriteLine(responseBody);
}
catch (HttpRequestException e)
{
Console.WriteLine("Error: {0}", e.Message);
}
}
}
}
}
在这个示例中,我们首先创建了一个HttpClient
实例,然后使用GetAsync
方法发送一个GET请求到指定的URL。我们使用EnsureSuccessStatusCode
方法确保请求成功,然后使用Content.ReadAsStringAsync
方法获取响应内容。最后,我们将响应内容输出到控制台。