c# – 检查事件是否有任何监听器?

前端之家收集整理的这篇文章主要介绍了c# – 检查事件是否有任何监听器?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否可以检测事件是否有任何监听器? (我需要处理我的事件提供者对象,如果没有人需要的话)

解决方法

假设课程在第三方库中,无法修改
public class Data
    {
       public event EventHandler OnSave;
       //other members
    }

在你的程序中

Data d = new Data();
    d.OnSave += delegate { Console.WriteLine("event"); };
    var handler = typeof(Data).GetField("OnSave",BindingFlags.NonPublic | BindingFlags.Instance).GetValue(d) as Delegate;

    if (handler == null)
    {
        //no subscribers
    }
    else
    {
        var subscribers = handler.GetInvocationList();
        //now you have the subscribers
    }
原文链接:https://www.f2er.com/csharp/97521.html

猜你在找的C#相关文章