S
Smokey Grindel
When I do a command like this with a web response
Dim webRequest As System.Net.HttpWebRequest
' --- more code here
webRequest.GetResponse.Close()
how much data would this return if I dont open a stream and read from it? I
am assumething that it only returns the reponse from the server and a cookie
if you have a cookie container instanciated? Then if you create a reader and
read the stream instead of closeing it that is when the bandwidth is really
used. is this correct? thanks!
Dim webRequest As System.Net.HttpWebRequest
' --- more code here
webRequest.GetResponse.Close()
how much data would this return if I dont open a stream and read from it? I
am assumething that it only returns the reponse from the server and a cookie
if you have a cookie container instanciated? Then if you create a reader and
read the stream instead of closeing it that is when the bandwidth is really
used. is this correct? thanks!