处理集合内的对象事件

发布于 2024-09-25 01:46:42 字数 138 浏览 3 评论 0原文

如何正确处理集合内对象的事件?

示例:我有一个 List,它异步 ping 多个服务器。如何判断列表中的一项是否已调用 PingCompleted 事件?如果我添加/删除 Ping 对象会怎样?

How do I properly handle the events of objects inside a collection?

Example: I have a List<Ping> which asynchronously pings a number of servers. How can I tell if one of the items in the List have called the PingCompleted event? What if I add/remove Ping objects?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谈下烟灰 2024-10-02 01:46:42

Collection 在继承方面比 List 更好:

class PingCollection : Collection<Ping>
{
    protected override void InsertItem(int index, Ping item)
    {
        ping.PingCompleted += PingCompleted

        base.InsertItem(index, item);
    }

    private void PingCompleted(object sender, EventArgs e)
    {
        // do stuff
    }
}

并且不要忘记在删除时取消订阅。

(编辑以引导丹的建议)

Collection is rather better than List for inheritance:

class PingCollection : Collection<Ping>
{
    protected override void InsertItem(int index, Ping item)
    {
        ping.PingCompleted += PingCompleted

        base.InsertItem(index, item);
    }

    private void PingCompleted(object sender, EventArgs e)
    {
        // do stuff
    }
}

And don't forget to unsubscribe on remove.

(Edited to lead Dan's suggestion)

要走干脆点 2024-10-02 01:46:42

您需要在每个 Ping 实例上设置事件处理程序。在事件处理程序中,您可以检查 source 参数来识别引发事件的 Ping 对象。
使用完该对象后,请记住删除处理程序引用,以帮助垃圾收集器完成其工作。

You need to set the event handler on each Ping instance. Inside the event handler you can inspect the source parameter to identify the Ping object that raised the event.
Remember to remove the handler reference once you are finished using the object to help the Garbage Collector do its job.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文