Hi,
I have a webservice, created using wcf. and generated proxy using
svcutil.exe with async option. Which creates beginMethodName and
EnMethodName. I have seen a sample code which uses

AddOnPreRenderCompleteAsync (
new BeginEventHandler(MyBeginMethod),
new EndEventHandler (MyEndMethod)
);



My question is Can i register multiple AddOnPreRenderCompleteAsync for each
call or how it works for multiple calls?