C# getting the results from an asynchronous call
- by Jim Beam
I have an API that I'm working with and it has limited documentation. I have been told that some of the methods that it executes are called asynchronously.
How can I get the result of these asynchronous calls. Note that I am not doing anything special to call them, the API handles the asynchronous part. But I can't seem to get a "reply" back from these calls - I'm assuming that's because they are in another thread.