public Forside GetOne(int id) { Forside returnOne = new Forside(); using (HttpClient client = new HttpClient()) { Task <string> resTask = client.GetStringAsync(URI + "/" + id); string jsonStr = resTask.Result; returnOne = JsonConvert.DeserializeObject <Forside>(jsonStr); } return(returnOne); }
public void Post(Forside obj) { using (HttpClient client = new HttpClient()) { string jsonStr = JsonConvert.SerializeObject(obj); StringContent content = new StringContent(jsonStr, Encoding.UTF8, "application/json"); Task <HttpResponseMessage> postAsync = client.PostAsync(URI, content); HttpResponseMessage resp = postAsync.Result; if (resp.IsSuccessStatusCode) { string jsonResStr = resp.Content.ReadAsStringAsync().Result; } } }