AsyncResult is not found in Windows Mobile 2003 CFW2.0

G

Guest

I want to get the result of Async callback function. The code works fine in
normal windows application because "System.Runtime.Remoting.Messaging" is
there. What can i do to make it work on Windows Mobile 2003 CFW2.0?

----code part-----

private void callBackForReceive(IAsyncResult objIAsyncResult_)
{
AsyncResult objAsyncResult_ = (AsyncResult)objIAsyncResult_;
delegateForReceive objDelegateForReceiveResult_ =
(delegateForReceive)objAsyncResult_.AsyncDelegate;
String sResult_ =
objDelegateForReceiveResult_.EndInvoke(objIAsyncResult_);
......
}

"AsyncResult" is not working... i want to get the return value to "sResult_".

Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top