Skip to content

Instantly share code, notes, and snippets.

@MACastro987
Created February 16, 2017 20:41
Show Gist options
  • Save MACastro987/faba3101584dc12615f77d2a99340d02 to your computer and use it in GitHub Desktop.
Save MACastro987/faba3101584dc12615f77d2a99340d02 to your computer and use it in GitHub Desktop.
Download Task
public async Task<byte[]> Download()
{
var httpClient = new HttpClient();
var randomUri = UriManager.LoadRandomUri();
Task<byte[]> contentsTask = httpClient.GetByteArrayAsync(randomUri);
return await contentsTask;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment