30
12/11
.NET Remoting系列 :信道
信道(Channel)是 Remoting 体系的承载平台,负责处理客户端和服务器之间的通讯,其内容包括跨域通讯、消息传递、对象编码等等。信道必须实现 IChannel 接口,根据通讯方向又分别提供了继承版本 IChannelReceiver 和 IChannelSender。Remoting 框架为我们提供了 IPC、TCP 以及 HTTP 的实现版本,当然我们还可以在网络上找到其他协议的实现版本。 TcpServerChannel channel = new TcpServerChannel(801); ChannelServices.RegisterChannel(channel, false); 我们可以使用实用类 ChannelServices 来管理程序域内的信...