httpClient getStringAsync
private static async string HttpGet(string uri)
{
var http = new HttpClient();
http.BaseAddress = new Uri(uri);
var res = await http.GetStringAsync("");
return res;
}
Mariano Montano