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

Re: Asynchronous calls by Miha

Miha
Tue Nov 18 07:50:16 CST 2003

Hi,

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

--