Why does this not works -
"The underlying connection was closed: The connection was closed unexpectedly"
static void Main()
{
using (var client = new WebClient())
{
try
{
Console.WriteLine(client.DownloadString("http://oz.by/books/more10176026.html"));
}
catch (Exception e)
{
throw;
}
}
}
Usual GET requests are OK. check it here