ฉันพยายามรับเนื้อหาของ HttpResponseMessage มันควรจะเป็น: {"message":"Action '' does not exist!","success":false}แต่ฉันไม่รู้ว่าจะนำออกจาก HttpResponseMessage ได้อย่างไร
HttpClient httpClient = new HttpClient();
HttpResponseMessage response = await httpClient.GetAsync("http://****?action=");
txtBlock.Text = Convert.ToString(response); //wrong!ในกรณีนี้ txtBlock น่าจะมีค่า:
StatusCode: 200, ReasonPhrase: 'OK', Version: 1.1, Content: System.Net.Http.StreamContent, Headers:
{
  Vary: Accept-Encoding
  Keep-Alive: timeout=15, max=100
  Connection: Keep-Alive
  Date: Wed, 10 Apr 2013 20:46:37 GMT
  Server: Apache/2.2.16
  Server: (Debian)
  X-Powered-By: PHP/5.3.3-7+squeeze14
  Content-Length: 55
  Content-Type: text/html
}