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?
Yes, it's 9,223,372,036,854,775,807 bytes (8,388,608 terrabytes)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With