This is my first exposure to working with the HttpClient.
I can see the status codes that come back from the rest call, but I'm unsure how can I read the json object that is returned from the GetData method?
public void MyTest()
{
using (HttpClient httpClient = new HttpClient())
{
httpClient.BaseAddress = new Uri(_uri);
var response = httpClient.GetAsync("API/GetData");
}
}