How can I clear event subscriptions in C#?(如何在 C# 中清除事件订阅?)
问题描述
参加以下 C# 课程:
Take the following C# class:
c1 {
event EventHandler someEvent;
}
如果有很多订阅 c1
的 someEvent
事件并且我想将它们全部清除,那么实现此目的的最佳方法是什么?还要考虑到此事件的订阅可能/是 lambdas/匿名委托.
If there are a lot of subscriptions to c1
's someEvent
event and I want to clear them all, what is the best way to achieve this? Also consider that subscriptions to this event could be/are lambdas/anonymous delegates.
目前我的解决方案是向 c1
添加一个 ResetSubscriptions()
方法,将 someEvent
设置为 null.我不知道这是否有任何看不见的后果.
Currently my solution is to add a ResetSubscriptions()
method to c1
that sets someEvent
to null. I don't know if this has any unseen consequences.
推荐答案
在类中,您可以将(隐藏)变量设置为 null.空引用是有效地表示空调用列表的规范方式.
From within the class, you can set the (hidden) variable to null. A null reference is the canonical way of representing an empty invocation list, effectively.
在课堂之外,您不能这样做 - 事件基本上会公开订阅"和取消订阅",仅此而已.
From outside the class, you can't do this - events basically expose "subscribe" and "unsubscribe" and that's it.
值得注意的是,类似字段的事件实际上在做什么——它们同时创建了一个变量和一个事件.在类中,您最终会引用该变量.从外部,您引用该事件.
It's worth being aware of what field-like events are actually doing - they're creating a variable and an event at the same time. Within the class, you end up referencing the variable. From outside, you reference the event.
有关详细信息,请参阅我的关于事件和代表的文章.
See my article on events and delegates for more information.
这篇关于如何在 C# 中清除事件订阅?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 C# 中清除事件订阅?


基础教程推荐
- 全局 ASAX - 获取服务器名称 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01