C# getting the results from an asynchronous call
Posted
by Jim Beam
on Stack Overflow
See other posts from Stack Overflow
or by Jim Beam
Published on 2010-04-13T15:26:22Z
Indexed on
2010/04/13
15:33 UTC
Read the original article
Hit count: 273
c#
|asynchronous
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.
© Stack Overflow or respective owner