There is StringContent class in System.Net.Http namespace. What purposes should I use class StringContent for?
It provides HTTP content based on a string.
Adding the content on HTTPResponseMessage Object
response.Content = new StringContent("Place response text here");