Content-Length header is blocked

Content-Length header is one of the restricted headers. How can I download podcasts or other content in chunks?
Try using the byte-range header.
request = (HttpWebRequest)HttpWebRequest.Create(..);
request.Method = “GET”;
request.Headers[“Range”] = desiredRange;
Share
This entry was posted in network, wp7 and tagged , . Bookmark the permalink.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>