我有这个从服务器获取并检索 JSON 的代码。
private async void JSON_click(object sender,RoutedEventArgs e)
{
var client=new HttpClient();
client.MaxResponseBufferSize=1024*1024;
var response= await Client.GetAsync(new Uri(The URL here));
var result = await response.Content.ReadAsStringAsync();
var component=JsonObject.Parse(result);
}
我需要每 30 秒轮询一次服务器以检查更新并检索 JSON。有什么建议么?