“httpclient getTringaSync” Kod odpowiedzi

httpclient getTringaSync

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 getTringaSync

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

Odpowiedzi podobne do “httpclient getTringaSync”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu