Top "Webresponse" questions

WinRT StorageFile write downloaded file

I'm struggling with a easy problem. I want to download an image from web using this code: WebRequest requestPic = WebRequest.…

stream download windows-runtime webresponse storagefile
How to parse JSON data in System.Net.Webrequest reponse

I am trying to call an API which returns the data in JSON format which i need to parse. How …

c# rest api webrequest webresponse
WebRequest.GetResponse locks up?

When writing the below my code locks up on GetResponse. Why? try { WebRequest myWebRequest = WebRequest.Create(strURL); WebResponse myWebResponse = myWebRequest.…

c# .net webresponse getresponse lockup