Asynchronous calls

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

Is there a way to cancel an asynchronous call?
For example, using the Socket class, if you call BeginReceive, can you
cancel the call if some timeout has expired?

Thank you in advance for your help
 
Hi,

No, there is not.
You can provide your own mechanisms though.
If you need to cancel them, you should use threads instead.
 
Back
Top