码迷,mamicode.com
首页 > Windows程序 > 详细

C# IPC信道跨进程通信

时间:2019-07-04 17:24:35      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:public   通讯   cli   ann   onclick   void   进程   span   ati   

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信道跨进程通信

标签:public   通讯   cli   ann   onclick   void   进程   span   ati   

原文地址:https://www.cnblogs.com/BennyHua/p/11133414.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!