Category Archives: c#

Asynchronous operations that use IAsyncResult objects

Implemented as two methods BeginOperation Begines operation asynchronously in a background thread from thread pool Returns an object of type IAsyncResult EndOperation Get results from the operation Accessing results of an async operation Need to wait for results from async operation Call … Continue reading

Posted in c# | Leave a comment