Async Await In C#

C# Async Await

 
Nowadays, Asynchronous programming is very popular with the help of the async and await keywords in C#.
 
When we are dealing with UI and on button click, we use a long running method like reading a large file or something else which will take a long time, in that case, the entire application must wait to complete the whole task.
 
In other words, if any process is blocked in a synchronous application, the entire application gets blocked and our application stops responding until the whole task completes.
Asynchronous programming is very helpful in this condition. By using Asynchronous programming, the Application can continue with the other work that does not depend on the completion of the whole task.
 
We will get all the benefits of traditional Asynchronous programming with much less effort by the help of async and await keywords.
 
Suppose, we are using two methods as Method1 and Method2 respectively and both the methods are not dependent on each other and Method1 is taking a long time to complete its task. In Synchronous programming, it will execute the first Method1 and it will wait for completion of this method and then it will execute Method2. Thus, it will be a time intensive process even though both the methods are not depending on each other.
 
We can run all the methods parallelly by using the simple thread programming but it will block UI and wait to complete all the tasks. To come out of this problem, we have to write too many codes in traditional programming but if we will simply use the async and await keywords, then we will get the solutions in much less code.
 
Also, we are going to see more examples, if any third Method as Method3 has a dependency of method1, then it will wait for the completion of Method1 with the help of await keyword.
 
Async and await are the code markers, which marks code positions from where the control should resume after a task completes.
 
Let’s start with practical examples for understanding the programming concept.
 

Code examples of C# async await 

 
We are going to take a console application for our demonstration.
 
Example 1
 
In this example, we are going to take two methods, which are not dependent on each other.
 
Code sample 
  1. class Program  
  2. {  
  3.     static void Main(string[] args)  
  4.     {  
  5.         Method1();  
  6.         Method2();  
  7.         Console.ReadKey();  
  8.     }  
  9.   
  10.     public static async Task Method1()  
  11.     {  
  12.         await Task.Run(() =>  
  13.         {  
  14.             for (int i = 0; i < 100; i++)  
  15.             {  
  16.                 Console.WriteLine(" Method 1");  
  17.             }  
  18.         });  
  19.     }  
  20.   
  21.   
  22.     public static void Method2()  
  23.     {  
  24.         for (int i = 0; i < 25; i++)  
  25.         {  
  26.             Console.WriteLine(" Method 2");  
  27.         }  
  28.     }  
  29. }  
In the code given above, Method1 and Method2 are not dependent on each other and we are calling from the Main method.
 
Here, we can clearly see Method1 and Method2 are not waiting for each other.
 
Output
 
 
 
Now, coming to the second example, suppose we have Method3, which is dependent on Method1
 
Example 2
 
In this example, Method1 is returning total length as an integer value and we are passing a parameter as a length in a Method3, which is coming from Method1.
 
Here, we have to use await keyword before passing a parameter in Method3 and for it, we have to use the async keyword from the calling method.
 
We can not use await keyword without async and we cannot use async keyword in the Main method for the console Application because it will give the error given below.
 
 
 
We are going to create a new method as callMethod and in this method, we are going to call our all Methods as Method1, Method2, and Method3 respectively.
 
Code sample 
  1. class Program  
  2. {  
  3.     static void Main(string[] args)  
  4.     {  
  5.         callMethod();  
  6.         Console.ReadKey();  
  7.     }  
  8.   
  9.     public static async void callMethod()  
  10.     {  
  11.         Task<int> task = Method1();  
  12.         Method2();  
  13.         int count = await task;  
  14.         Method3(count);  
  15.     }  
  16.   
  17.     public static async Task<int> Method1()  
  18.     {  
  19.         int count = 0;  
  20.         await Task.Run(() =>  
  21.         {  
  22.             for (int i = 0; i < 100; i++)  
  23.             {  
  24.                 Console.WriteLine(" Method 1");  
  25.                 count += 1;  
  26.             }  
  27.         });  
  28.         return count;  
  29.     }  
  30.   
  31.     public static void Method2()  
  32.     {  
  33.         for (int i = 0; i < 25; i++)  
  34.         {  
  35.             Console.WriteLine(" Method 2");  
  36.         }  
  37.     }  
  38.   
  39.     public static void Method3(int count)  
  40.     {  
  41.         Console.WriteLine("Total count is " + count);  
  42.     }  
  43. }  
In the code given above, Method3 requires one parameter, which is the return type of Method1. Here, await keyword is playing a vital role for waiting of Method1 task completion.
 
Output
 
 
 
Real time example
 
There are some supporting API's from the .NET Framework 4.5 and the Windows runtime contains methods that support async programming.
 
We can use all of these in the real time project with the help of async and await keyword for the faster execution of the task.
 
Some APIs that contain async methods are HttpClient, SyndicationClient, StorageFile, StreamWriter, StreamReader, XmlReader, MediaCapture, BitmapEncoder, BitmapDecoder etc.
 
In this example, we are going to read all the characters from a large text file asynchronously and get the total length of all the characters.
 
Sample code
  1. class Program  
  2. {  
  3.     static void Main()  
  4.     {  
  5.         Task task = new Task(CallMethod);  
  6.         task.Start();  
  7.         task.Wait();  
  8.         Console.ReadLine();  
  9.     }  
  10.   
  11.     static async void CallMethod()  
  12.     {  
  13.         string filePath = "E:\\sampleFile.txt";  
  14.         Task<int> task = ReadFile(filePath);  
  15.   
  16.         Console.WriteLine(" Other Work 1");  
  17.         Console.WriteLine(" Other Work 2");  
  18.         Console.WriteLine(" Other Work 3");  
  19.   
  20.         int length = await task;  
  21.         Console.WriteLine(" Total length: " + length);  
  22.   
  23.         Console.WriteLine(" After work 1");  
  24.         Console.WriteLine(" After work 2");  
  25.     }  
  26.   
  27.     static async Task<int> ReadFile(string file)  
  28.     {  
  29.         int length = 0;  
  30.   
  31.         Console.WriteLine(" File reading is stating");  
  32.         using (StreamReader reader = new StreamReader(file))  
  33.         {  
  34.             // Reads all characters from the current position to the end of the stream asynchronously    
  35.             // and returns them as one string.    
  36.             string s = await reader.ReadToEndAsync();  
  37.   
  38.             length = s.Length;  
  39.         }  
  40.         Console.WriteLine(" File reading is completed");  
  41.         return length;  
  42.     }  
  43. }  
In the code given above, we are calling a ReadFile method to read the contents of a text file and get the length of the total characters present in the text file.
 
In our sampleText.txt, file contains too many characters, so It will take a long time to read all the characters.
 
Here, we are using async programming to read all the contents from the file, so it will not wait to get a return value from this method and execute the other lines of code but it has to wait for the line of code given below because we are using await keyword and we are going to use the return value for the line of code given below.. 
  1. int length = await task;  
  2. Console.WriteLine(" Total length: " + length);   
Subsequently, other lines of code will be executed sequentially. 
  1. Console.WriteLine(" After work 1");  
  2. Console.WriteLine(" After work 2");   
Output
 
 
 
Here, we have to understand very important points that if we are not using await keyword, then the method works as a synchronous method. The compiler will show the warning to us but it will not show any error.
 
In this easy way, we can use async and await keywords in C# to implement async programming.
 
If you're new to Async programming, here is a detailed tutorial  - Tutorial on Asynchronous programming in C#
Author
Vivek Kumar
150 11.8k 5.4m
Next » How And When To Use Task And Async Await