hi Guys
Can I call an a asynchronous call from any asynchronous call? Like
a.BeginCallBack(){
do something...
}
a.EndCallBack()
{
do something...
b.beginCallBack()
}
b.endCallBack()
{
}
William Stacey [MVP] - 28 Mar 2006 01:53 GMT
Yes. I would call the respective EndXX() method before calling the next
BeginXX().

Signature
William Stacey [MVP]
| hi Guys
| Can I call an a asynchronous call from any asynchronous call? Like
[quoted text clipped - 13 lines]
| {
| }
Nick Hounsome - 28 Mar 2006 09:55 GMT
> hi Guys
> Can I call an a asynchronous call from any asynchronous call?
Yes.
Obvious really - for example: What use would an async TCP receive be if it
couldn't do another?