G
Guest
I have a network stream which I got from HttpWebResponse and does not support
seeking, How do I find the length of the network stream?
HttpWebResponse* response = dynamic_cast<HttpWebResponse*>
(request->GetResponse());
// Gets the stream associated with the response.
Stream* receiveStream = response->GetResponseStream();
int n = receiveStream->Read(responseArray, 0, responseString->Length);
seeking, How do I find the length of the network stream?
HttpWebResponse* response = dynamic_cast<HttpWebResponse*>
(request->GetResponse());
// Gets the stream associated with the response.
Stream* receiveStream = response->GetResponseStream();
int n = receiveStream->Read(responseArray, 0, responseString->Length);