Calling Asynchronous Methods Using IAsyncResult
Types in the .NET libraries and third-party class libraries can provide methods that allow an application to continue executing while performing asynchronous operations in threads other than the main application thread. The following sections describe and provide code examples that demonstrate the different ways you can call asynchronous methods that use the IAsyncResult design pattern.
Blocking Application Execution by Ending an Async Operation.
Using an AsyncCallback Delegate to End an Asynchronous Operation.
See also
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.