Created
March 4, 2012 17:59
-
-
Save jamesmanning/1974163 to your computer and use it in GitHub Desktop.
async void, exits fast
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Net.Http; | |
namespace ItsBigItsHeavyItsWood | |
{ | |
class Program | |
{ | |
static void Main() | |
{ | |
var urlsToDownload = new[] | |
{ | |
"http://www.google.com/", | |
"http://www.microsoft.com/", | |
"http://www.apple.com/", | |
}; | |
foreach (var url in urlsToDownload) | |
{ | |
DownloadUrl(url); | |
} | |
} | |
private static async void DownloadUrl(string url) | |
{ | |
var client = new HttpClient(); | |
Console.WriteLine("Starting to download url {0}", url); | |
var contents = await client.GetByteArrayAsync(url); | |
Console.WriteLine("Downloaded {0} bytes", contents.Length); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment