I've got the code below. I'm making an asynchronous request against the
twitter api. This has worked perfectly until 4.0.1.
My tech editor started getting problems and now I am able to repeat them. I
didn't see this previously with 4.0.0 or the betas. Basically, the request
comes back,
StreamReader gets passed into XDocument.Load and then the request goes
completely byebye. The app doesn't quit. Its as if all of the execution stops
at this point.
Has anyone else seen anything like this? Any suggestions are appreciated.
HttpWebRequest request = (HttpWebRequest)iar.AsyncState;
HttpWebResponse response;
response = (HttpWebResponse)request.EndGetResponse(iar);
System.IO.StreamReader strm = new System.IO.StreamReader(
response.GetResponseStream());
System.Xml.Linq.XDocument xd = XDocument.Load(strm);
Thanks in advance.
Wally
_______________________________________________
Monodroid mailing list
[email protected]
UNSUBSCRIBE INFORMATION:
http://lists.ximian.com/mailman/listinfo/monodroid