I need to read a stream in this way:
using(HttpWebResponse response = (HttpWebResponse)request.getResponse())
{
using(Stream answer = response.getResponseStream())
{
// waiting for a while to read next
}
}
However, I don't know the stream length. According Fiddler the stream length is greater than 15,000,000 bytes.
Is there a length limit?