C# IPC信道跨进程通信

Posted bennyhua

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# IPC信道跨进程通信相关的知识,希望对你有一定的参考价值。

Server端:注册信道

技术图片
1 /// <summary>
2         /// 注册IPC管道通讯
3         /// </summary>
4         public void IpcServer()
5         
6             IpcServerChannel channel = new IpcServerChannel("ServerChannel");
7             ChannelServices.RegisterChannel(channel, false);
8             RemotingConfiguration.RegisterWellKnownServiceType(typeof(类型-class), "注册名称--对象名", WellKnownObjectMode.SingleCall);
9         
View Code

Client端:连接获取信道

技术图片
1 IpcClientChannel channel = new IpcClientChannel();
2                 ChannelServices.RegisterChannel(channel, false);
3 
4                 (类型-class) obj = (类型-class)Activator.GetObject(typeof(类型-class), "ipc://ServerChannel/注册信道名-对象名");
5 
6                 
View Code

 

以上是关于C# IPC信道跨进程通信的主要内容,如果未能解决你的问题,请参考以下文章

IPC进程间通信/跨进程通信

Android IPC跨进程通讯的几种方式作用

AIDL跨进程通信

Android面试Android跨进程通信IPC

Hermes——跨进程通信(IPC)框架,使用介绍

linux 单机跨进程通信