SyntaxFix
Write A Post
Hire A Developer
Questions
If you're using .NET 4.5 and want to use async then you can use HttpClient in System.Net.Http:
HttpClient
System.Net.Http
using (var httpClient = new HttpClient()) { var json = await httpClient.GetStringAsync("url"); // Now parse with JSON.Net }