Answers for "get request httpclient c#"

C#
2

httpclient c# sample

// HttpClient is intended to be instantiated once per application, rather than per-use. See Remarks.
static readonly HttpClient client = new HttpClient();

static async Task Main()
{
  // Call asynchronous network methods in a try/catch block to handle exceptions.
  try	
  {
     HttpResponseMessage response = await client.GetAsync("http://www.contoso.com/");
     response.EnsureSuccessStatusCode();
     string responseBody = await response.Content.ReadAsStringAsync();
     // Above three lines can be replaced with new helper method below
     // string responseBody = await client.GetStringAsync(uri);

     Console.WriteLine(responseBody);
  }
  catch(HttpRequestException e)
  {
     Console.WriteLine("nException Caught!");	
     Console.WriteLine("Message :{0} ",e.Message);
  }
}
Posted by: Guest on April-19-2021
1

C# HttpClient POST request

using System;
using System.Text;
using System.Net.Http;
using System.Threading.Tasks;
using Newtonsoft.Json;

namespace HttpClientPost
{
    class Person
    {
        public string Name { get; set; }
        public string Occupation { get; set; }

        public override string ToString()
        {
            return $"{Name}: {Occupation}";
        }
    }

    class Program
    {
        static async Task Main(string[] args)
        {
            var person = new Person();
            person.Name = "John Doe";
            person.Occupation = "gardener";

            var json = JsonConvert.SerializeObject(person);
            var data = new StringContent(json, Encoding.UTF8, "application/json");

            var url = "https://httpbin.org/post";
            using var client = new HttpClient();

            var response = await client.PostAsync(url, data);

            string result = response.Content.ReadAsStringAsync().Result;
            Console.WriteLine(result);
        }
    }
}
Posted by: Guest on December-10-2020
0

httpclient C#

//example code
//var lst = await service.ConnectHttpClient<User, List<User>>("api/User/GetUserInfoByUserId", new User() { UserId = 1 });
//var lst = await service.ConnectRestClient<User, List<User>>("api/User/GetUserInfoByUserId", new User() { UserId = 1 });

public async Task<M> ConnectHttpClient<R, M>(string apiUrl, R reqModel)
{
    M model = default(M);

    HttpClient client = new HttpClient();
    client.BaseAddress = new Uri(baseUrl);
    client.DefaultRequestHeaders.Accept.Clear();
    client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
    HttpResponseMessage response = await client.PostAsJsonAsync(apiUrl, reqModel);
    if (response.IsSuccessStatusCode)
    {
        var res = response.Content.ReadAsStringAsync().Result;
        model = JsonConvert.DeserializeObject<M>(res);
    }
    return model;
}

public async Task<M> ConnectRestClient<R, M>(string apiUrl, R reqModel)
{
    M model = default(M);

    RestClient restClient = new RestClient(baseUrl);
    RestRequest restRequest = new RestRequest(apiUrl, Method.POST, DataFormat.Json);
    restRequest.AddJsonBody(reqModel);
    IRestResponse restResponse = await restClient.ExecuteAsync(restRequest);
    if (restResponse.IsSuccessful)
    {
        string response = restResponse.Content;
        model = JsonConvert.DeserializeObject<M>(response);
    }
    return model;
}
Posted by: Guest on June-14-2021

Code answers related to "get request httpclient c#"

C# Answers by Framework

Browse Popular Code Answers by Language