What methods exist for local remote procedure call?

非 Y 不嫁゛ 提交于 2019-12-05 00:36:08

I would recommend WCF with NetNamedPipeBinding for interprocess communication. Here's an example.

There's also Remoting which has been around since .NET 1.0 but becoming obsolete in favor of WCF.

There are several options available to you here. The most prominent though are

Both can be used for communication between processes on a remote or local machine.

I would recommend .NET Remoting configured with IPC channels, in my opinion this is the fastest way of communication between applications running on the same PC.

networkComms.net provides very general RPC functionality, see RPCExample.cs.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!