.NET Remoting - 如何回调所有连接的客户端?
我正在研究 .NET 远程处理,我看到一个示例: http://www.mctainsh.com/Articles/Csharp/RemoteCallback.aspx#A%5Fsimple%5Fexample,一切正常。现在我的问题是,如果我尝试启动另一个客户端,服务器不会回调所有连接的客户端,而只会回调最后一个客户端。如何向所有客户发送回调?
I'm studying the .NET Remoting and I see an example on: http://www.mctainsh.com/Articles/Csharp/RemoteCallback.aspx#A%5Fsimple%5Fexample ,all works good. Now my problem is if I try to start another client, server don't callback to all clients connected but only to last one. How can I send callback to all clients?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将这部分代码更改
为
:现在,事件未添加到列表中,但
s_notify
设置为在每个add
上触发不同的事件处理程序。Try to change this part of code:
into:
Right now, events are not added to the list, but
s_notify
is set to fire a different event handler on eachadd
.