Just out of curiosity, does anyone know why the AsynchResult type resides in System.Runtime.Remoting.Messaging as opposed to System.Threading ? It would seem to make more sense to have it declared with all threading types.
Thanks,
Scott
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Because that’s just one concrete implementation of the
System.IAsyncResultinterface, and it happens to be an implementation that is used for remoting calls. You can use it elsewhere, but that’s not what it’s intended for.