问题 I want to read AppInsights API output in C# console application. WebClient wc = new WebClient(); wc.BaseAddress = "https://api.applicationinsights.io/v1/apps/AppInsighID/query?query=requests|where timestamp>= ago(1h)|limit 100"; wc.Headers.Add("Host", "api.applicationinsights.io"); wc.Headers.Add("x-api-key", "key"); string json = wc.DownloadString(""); JObject jsonObject = JObject.Parse(json); //With this, i got values for Rows var rowsObject = jsonObject["tables"][0]["rows"]; Now values are