With the StringContent
we have to read it
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
public async Task ReadStringContentAsync()
{
string contentString = await theStringContent.ReadAsStringAsync();
//do something with the string
}