Reputation: 2078
I am using below code in C# .Net console app to make HTTP get and POST request .And what to know how do we do this in Win 8 modern app using C# and XAML ?
System.Net.HttpWebRequest req = (HttpWebRequest)System.Net.WebRequest.Create(URI);
System.Net.WebResponse resp = req.GetResponse();
Upvotes: 2
Views: 5988