分类

链接

2025 年 1 月
 12345
6789101112
13141516171819
20212223242526
2728293031  

近期文章

热门标签

新人福利,免费薅羊毛

.NET Remoting系列 :信道

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

.NET 暂无评论 阅读(2,294)