Skip to content

Instantly share code, notes, and snippets.

@thgbrb
Last active August 10, 2019 14:03
Show Gist options
  • Select an option

  • Save thgbrb/e5b7c8f71850b6076d607325c61f67c0 to your computer and use it in GitHub Desktop.

Select an option

Save thgbrb/e5b7c8f71850b6076d607325c61f67c0 to your computer and use it in GitHub Desktop.
public static Task DoRequest(string url)
=> Task.Run(async () =>
{
await httpClient.GetStringAsync(requestUri: url);
Console.WriteLine($"{DateTime.Now} - Task completed.");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment