Async Sample: Asynchronous Programming with Async and Await

This sample is a WPF application written in Visual Basic from the Asynchronous progamming with async and await in Visual Basic tutorial. The topic gives an overview of asynchronous programming, including when to use it and how to write an Async method. This sample contains an Async function that is used as an illustration.

Async and Await provide all the advantages of traditional asynchronous programming, but with much less effort from the developer. The compiler does the difficult work that the developer used to do, yet the code retains a logical structure that resembles synchronous code.

The example Async function in this sample (named GetStringAsync) uses an HttpClient method to download the contents of a website.

The code for the MainWindow.xaml.vb file from this sample is included in the article.

Sample prerequisites

This sample is written in Visual Basic and targets .NET 6.0 running on Windows. It requires the .NET 6.0 SDK.

Building the sample

To download and run the sample, follow these steps:

  1. Download and unzip the sample.
  2. In Visual Studio (2019 or later):
    1. On the menu bar, choose File > Open > Project/Solution.
    2. Navigate to the folder that holds the unzipped sample code, and open the C# project (.csproj) file.
    3. Choose the F5 key to run with debugging, or Ctrl+F5 keys to run the project without debugging.
  3. From the command line:
    1. Navigate to the folder that holds the unzipped sample code.
    2. At the command line, type dotnet run.

More information