Silverlight HttpWebRequest syncronous call
问题 In my silverlight app I do a file upload. I break the file into chunks and then I upload each chunk. The problem is that I want to use the HttpWebRequest synchronously. My propblem is to ensure that all request are ok and to catch exceptions. Is that possible in Silverlight? I would like sopmething like: while(chunk) { try{ HttpWebRequest req = ... req.BeginGetRequestStream(new AsyncCallback(WriteCallback), req); //add data into request stream req.BeginGetResponseStream(new AsyncCallback