“httpclient getstringAsync” Ответ

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

httpclient getstringAsync

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

Ответы похожие на “httpclient getstringAsync”

Смотреть популярные ответы по языку

Смотреть другие языки программирования