How best to communicate between AppDomains?

前端 未结 6 1867
孤城傲影
孤城傲影 2020-12-07 22:31

I have an application that needs to send a moderately high volume of messages between a number of AppDomains. I know that I could implement this using remoting, but I have

6条回答
  •  春和景丽
    2020-12-07 23:06

    This is just a quick thought, but I heard that even for cross-domain communication WCF would be the recommended approach, starting from .NET 3.0 of course. Actually this makes sense, as remoting is just another technology wrapped by WCF.

提交回复
热议问题