We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
To request a single web page:
string html = Http.Get("http://google.com");
To post data to a site:
string html = Http.Post("http://playsharp.net/PostTest.ashx", "q=NetUtilities");
To download a file from a URL, use the Download method, set the Url and the path you wish to save the file to on your HDD:
Http.Download("https://github.com/AydinAdn/NetUtilities", "NetUtilities.html");