.NET Remoting Basic(7)信道

信道(Channel)负责客户端和服务器之间的通讯,信道必须实现 IChannel 接口,Remoting 框架为我们提供了 IPC、TCP 以及 HTTP 的实现版本,根据通讯方向又分别提供了继承版本 IChannelReceiver 和 IChannelSender

image_2

ChannelServices负责注册,注销,获取信道等功能

image_4 

接收器

用于数据序列化用的,也分服务器端和客户端

http://www.rainsts.net/article.asp?id=412

http://www.cnblogs.com/rickie/archive/2004/10/16/52983.aspx

http://www.cnblogs.com/rickie/archive/2006/10/29/54891.html

原文地址:https://www.cnblogs.com/Clingingboy/p/1809579.html