我是 HttpClient 的新手。我下面的代码总是在状态中显示“WaitingForActivation”。请帮忙
private static async Task<HttpResponseMessage> MakeCall()
{
var httpclient = new HttpClient();
var response = await httpclient.GetAsync("http://localhost:60565/Subscribers");
return response;
}