How best to communicate between AppDomains?

前端 未结 6 1870
孤城傲影
孤城傲影 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:13

    I have had good success using WCF with a named pipes binding. Using named pipes creates no network traffic and uses binary encoding, so it should be pretty fast without sacrificing the ability to distribute in future scaling scenarios.

    EDIT: Refer here for more detailed information including a link to an implementation example.

提交回复
热议问题