Hi,
I am using the GetResponseStream.Read() function of the HttpWebResponse to read bytes of a remote file. I was wondering how to seek to a particular position and read from that position. I tried to assign the stream obtained from GetResponseStream() to a FileStream but it seems to be of type ConnectStream and is throwing typecasting errors. My idea is to use the Seek() method.

So, how would we use the Seek() method in this case ?

Thanks in advance..