LF> Thanks for the answer! The problem is: I only need the last 128 bytes
LF> of the file and (to save time- as well as bandwidth) I wished I did
LF> not have to download the entire stream. Then again, after some
LF> testing: the stream returned by "OpenRead" method does not support
LF> seek operations anyway... Again: thanks for the answer anyway!
Then you can use Range header. Use WebClient.Headers property to add headers
Something like this
WebClient myWebClient = new WebClient();
myWebClient.Headers.Add("Range","bytes=-128");