I have a server response with Transfer-Encoding: chunked
HTTP/1.1 200 OK Server: nginx/1.2.1 Date: Mon, 18 Feb 2013 08:22:49 GMT Content-Type: application/json; charset=utf-8 Transfer-Encoding: chunked Connection: keep-alive Vary: Accept-Encoding c7 {<some json data>} 0
See the c7 chunk size before json data.
How can I read a raw response stream without chunks in Windows Phone using HttpWebResponse ?
Hint: to make a conclusion to disable the output of the string, I just need to specify the version of the HTTP / 1.0 protocol. But I donβt know how to do this, because in the HttpWebRequest class HttpWebRequest no ProtocolVersion class in Windows Phone or Silverlight
source share