Remoting的注册与注销
摘要:
//获得当前已注册的通道;IChannel[] channels = ChannelServices.RegisteredChannels;//关闭指定名为MyTcp的通道;foreach (IChannel eachChannel in channels){ if (eachChannel.ChannelName == "MyTcp") { TcpChannel tcpChannel = (T... 阅读全文
posted @ 2008-03-20 21:45 3stones 阅读(641) 评论(0) 推荐(0) 编辑