Several months ago, Microsoft decided to change up the HttpResponseMessage class. Before, you could simply pass a data type into the constructor, and then return the message
No doubt that you are correct Florin. I was working on this project, and found that this piece of code:
product = await response.Content.ReadAsAsync();
Could be replaced with:
response.Content = new StringContent(string product);