Can WebClient() download more than one string at the same time? (C#)

Posted by Ole Jak on Stack Overflow See other posts from Stack Overflow or by Ole Jak
Published on 2010-04-24T16:34:32Z Indexed on 2010/04/24 16:43 UTC
Read the original article Hit count: 139

Filed under:
|
|
|

I mean can I do something like this:

  var client = new WebClient(); 

  var result = client.DownloadString(string("http://example.com/add.php");

  var result2 = client.DownloadString(string("http://example.com/notadd.php"));

in paralel like for 100 url's ?

© Stack Overflow or respective owner

Related posts about c#

Related posts about wpf