Can i call EndInvoke before an Asynchronously action ended?

  • Thread starter Thread starter Julia
  • Start date Start date
J

Julia

Hi,
I am using Asynchronously Delegates,and I wonder
Can I call EndInvoke to end the processing before THE Asynchronously action
ended?

Thanks.
 
Yes -- in this case the call to EndInvoke will block until the call
completes.

Ken
 
Thanks,not good for me,I now understand that I can terminate the thread
because I don't own it.
 
Back
Top