C# IPC本机进程间通讯

31、运行效果如下,示例可已在https://download.csdn.net/download/xingchengaiwei/89574208  下载。

2、项目结构,如下图 。

3、 RemoteObject中RemoteObject.cs类代码如下

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace RemoteObject
{
    public class RemoteObject: MarshalByRefObject
    {
        private int _Count = 0;

        public int Count()
        {
            _Count++;
            return _Count;
        }

        public int Add(int add)
        {
            _Count += add;
            return _Count;
        }
    }
}

4、ConsoleAppServer中Program.cs类代码如下。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Ipc;

namespace ConsoleAppServer
{
    class Program
    {
        static void Main(string[] args)
        {
            IpcChannel serverchannel = new IpcChannel("Serverchannel");
            ChannelServices.RegisterChannel(serverchannel,false);
            RemotingConfiguration.RegisterWellKnownServiceType(typeof(RemoteObject.RemoteObject), "RemoteObject",WellKnownObjectMode.Singleton);
            Console.WriteLine("Press Enter to exit");
            Console.ReadLine();
            Console.WriteLine("Server Stopped");
        }
    }
}

5、ConsoleAppClient中Program.cs类代码如下。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.Remoting;
using System.Runtime.Remoting.Channels;
using System.Runtime.Remoting.Channels.Ipc;

namespace ConsoleAppClient
{
    class Program
    {
        static void Main(string[] args)
        {
            //创建IPC客户端信道。
            IpcClientChannel channel = new IpcClientChannel();
            //注册服务信道
            ChannelServices.RegisterChannel(channel,false);
            RemoteObject.RemoteObject obj =
                (RemoteObject.RemoteObject)Activator.GetObject(typeof(RemoteObject.RemoteObject),
                    "ipc://Serverchannel/RemoteObject");


            RemoteObject.RemoteObject remoteObject = new RemoteObject.RemoteObject();
            //Console.WriteLine("{0} {1}", remoteObject.Count(), remoteObject.Add(20));
            Console.WriteLine("{0} {1}", obj.Count(), obj.Add(20));
            Console.ReadLine();
        }
    }
}

6、先运行ConsoleAppServer,在运行ConsoleAppClient,注意IPC一般用于本机间的进程通讯,如果要做不同主机间的进程通讯,我推荐使用Socket去完成。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

为风而战

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值