-1
我的工作SL4,當我運行下面的代碼它給我的錯誤作爲在Silverlight中的HttpWebRequest不包含定義的GetResponse()
的HttpWebRequest不包含定義的GetResponse()。
然後如何得到迴應。
string str = "http://sam.com/getdeatils.php";
HttpWebRequest httpWebRequest = (HttpWebRequest)WebRequest.Create(str);
HttpWebResponse response = (HttpWebResponse)httpWebRequest.GetResponse();
Stream responseStream = response.GetResponseStream();
StreamReader streamReader = new StreamReader(responseStream);
string end = stream Reader.ReadToEnd();