标签: c# .net uri appdomain remoting
如果我创建一个对象并使用RemotingServices在AppDomains上封送它,如下所示:
Object obj = new Object(); RemotingServices.Marshal(obj, null, null);
以后是否有办法使用相同的URI封送新对象?我想我必须删除第一个对象,但我无法弄清楚如何做到这一点。
答案 0 :(得分:0)
是的,您需要断开第一个对象,然后才能使用相同的URI封送新对象:
RemotingServices.Disconnect(obj);
请参阅RemotingServices.Disconnect