在C#中,可以使用HttpClient類來發(fā)送GET請求并設(shè)置超時時間。以下是一個示例代碼:
using System;
using System.Net.Http;
using System.Threading.Tasks;
class Program
{
static async Task Main(string[] args)
{
HttpClient client = new HttpClient();
// 設(shè)置超時時間為10秒
client.Timeout = TimeSpan.FromSeconds(10);
try
{
HttpResponseMessage response = await client.GetAsync("https://jsonplaceholder.typicode.com/todos/1");
response.EnsureSuccessStatusCode();
string responseBody = await response.Content.ReadAsStringAsync();
Console.WriteLine(responseBody);
}
catch (HttpRequestException e)
{
Console.WriteLine($"Request failed: {e.Message}");
}
}
}
在上面的示例中,我們使用HttpClient類發(fā)送了一個GET請求,并設(shè)置超時時間為10秒。如果請求在超時時間內(nèi)沒有得到響應(yīng),將會拋出HttpRequestException異常。