- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Call a method Asynchronously in C#
Asynchronous programming in C# is an efficient approach towards activities blocked or access is delayed. If an activity is blocked like this in a synchronous process, then the complete application waits and it takes more time. The application stops responding. Using asynchronous approach, the applications continues with other tasks as well.
An application with a GUI, check the content of the queue and if an unprocessed task is there, it takes it out and processes it first. The code executes synchronously and the unprocessed task is completed first. The application will show stop responding messages if the processing takes more time than expected.
Let us see what is discussed above.
private void OnRequestDownload(object sender, RoutedEventArgs e) { var req = HttpWebRequest.Create(_requestedUri); var res = req.GetResponse(); }
To solve the above issue, use the async and await keywords.
private async void OnRequestDownload(object sender, RoutedEventArgs e) { var req= HttpWebRequest.Create(_requestedUri); var res = await req.GetResponseAsync(); }
- Related Articles
- What is a recursive method call in C#?
- How to call a method of a class in C#
- How do we call a C# method recursively?
- What is a JavaScript call() Method?
- How to call a method after a delay?
- JavaScript call() Method with Arguments.
- How do we call a Java method recursively?
- Can we call a constructor directly from a method in java?
- How to call a method after a delay in Swift(iOS)?
- How to call a method after a delay in Android Kotlin?
- How to declare, define and call a method in Java?
- Call append() method to construct a StringBuffer object in Java
- A C/C++ Function Call Puzzle?
- How to call an interface method in Java?
- How to set the script to be executed asynchronously in HTML?

Advertisements