我从文档中获取了这段代码:
static async Task<string> request(string link)
{
HttpResponseMessage response = await client.GetAsync(link);
response.EnsureSuccessStatusCode();
string responseBody = await response.Content.ReadAsStringAsync();
return responseBody;
}
但是当通过我调用一个方法时string user_ip = await request("https://ident.me");
我得到一个错误cs4033,它说该方法不是异步的