TcpChannel 类
提供使用 TCP 协议传输消息的发送方-接收方信道实现。
System.Object
System.Runtime.Remoting.Channels.Tcp.TcpChannel
http://chs.gotdotnet.com/quickstart/util/srcview.aspx?path=%2fQuickStart%2fHowTo%2fSamples%2fRemoting%2fHello%2fclient.src
RemotingServices.Disconnect是否释放了对象?
------解决方法--------------------------------------------------------
需要添加程序集的引用
在项目中添加引用System.Runtime.Remoting.dll
------解决方法--------------------------------------------------------
找不到TcpChannel,解决办法如上。
RemotingServices.Disconnect()方法的参数时实例化的对象。该对象如在服务器端实例化,则通过Disconnect()方法可将该对象在通道中注销。此时客户端不能访问该对象。至于该对象本身是否释放,则要看该对象是否定义了生命周期,否则应交给GC来释放。