Try to understand HttpWebRequest.GetResponseStream

219 Views Asked by At

i am trying to understand how GetResponseStream works.

when I do request.GetResponseStream, does it download all the data then return the Stream object?

1

There are 1 best solutions below

0
On

GetResponseStream returns a stream from which you can read the response. Internally, it can work any way it wants to. It can read the entire stream from the server before you call GetResponseStream, it can do it when you call GetResponseStream, it can do it later when you read from the stream. No guarantees are made as to how and when it will read from the server.