Tag Archives: request

C# HTTP Request

A few years ago I’ve written an article on how to perform a synchronous HTTP request using Qt 4.2. I I’ve seen this article today and since now I’m mostly working with C# i was wandering how fast can i do the same thing in c#. After very few minutes I’ve managed to came up with this:
using System;
using System.Net;
using System.IO;

class Program
{
static… read full article