C# async and await

The async and await keywords in C# are the heart of async programming. By using those two keywords, you can use resources in the .NET Framework or the Windows Runtime to create an asynchronous method almost as easily as you create a synchronous method. Asynchronous methods that you define by using async and await are referred to as async methods. The following example shows an async method. Almost everything in the code should look completely familiar to you. The comments call out the features that you add to create the asynchrony.

 // Three things to note in the signature:   
 // - The method has an async modifier.    
 // - The return type is Task or Task<T>. (See "Return Types" section.)   
 //  Here, it is Task<int> because the return statement returns an integer.   
 // - The method name ends in "Async."   
 async  AccessTheWebAsync()   
 {    
   // You need to add a reference to System.Net.Http to declare client.   
   HttpClient client = new HttpClient();   
   // GetStringAsync returns a Task. That means that when you await the   
   // task you'll get a string (urlContents).   
   Task<string> getStringTask = client.GetStringAsync("http://msdn.microsoft.com");   
   // You can do work here that doesn't rely on the string from GetStringAsync.   
   DoIndependentWork();   
   // The await operator suspends AccessTheWebAsync.   
   // - AccessTheWebAsync can't continue until getStringTask is complete.   
   // - Meanwhile, control returns to the caller of AccessTheWebAsync.   
   // - Control resumes here when getStringTask is complete.    
   // - The await operator then retrieves the string result from getStringTask.   
   string urlContents = await getStringTask;   
   // The return statement specifies an integer result.   
   // Any methods that are awaiting AccessTheWebAsync retrieve the length value.   
   return urlContents.Length;   
 }   

Comments

Popular posts from this blog

String.Replace vs Regex.Replace

C# Form Application in Kiosk Mode/Fullscreen

Javascript numeric only text box