I have the following code:
Image tmpimg = null;
HttpWebRequest httpWebRequest = (HttpWebRequest)HttpWebRequest.Create(url);
HttpWebResponse httpWebReponse = (HttpWebResponse)httpWebRequest.GetResponse();
Stream stream = httpWebReponse.GetResponseStream();
return Image.FromStream(stream);
On the last line when I type in Image.
, FromStream
isn't in the list. What can I do?
I´ve got a problem with the found suggestions
. What is that problem? – SutherlandFromStream
issue is clear. What was not clear was what deficiencies there were in other answers (or that this was it). – SutherlandFromStream
is used. When I try it, it isn´t found – Tameshatamez