“httpclient getTringasync” Código de respuesta

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

Respuestas similares a “httpclient getTringasync”

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código