vote up 5 vote down star
2

Say if I listen for an event:

Subject.NewEvent += delegate(object sender, NewEventArgs e)
{
    //some code
});

Now how do I un-register this event? Or just allow the memory to leak?

flag

69% accept rate

5 Answers

vote up 11 vote down check

If you need to unregister an event, I recommend avoiding anonymous delegates for the event handler.

This is one case where assigning this to a local method is better - you can unsubscribe from the event cleanly.

link|flag
I thought so. But, had a doubt. Thanks. – PK Aug 28 at 16:41
I disagree - if you need to create a closure then you are going to have to use an anonymous method. – free-dom Aug 28 at 19:20
1  
@free-dom: There are always options to avoid making closures (worst case, you could do what the compiler does for you). Most of the time, event handlers where you plan to unsubscribe the event are not, IMO, good candidates for events where you want closures. You should be using easily trackable, class level state information instead of having the compiler create the closures for you. Closures in this case tend to lead to strange, difficult to track issues over time, and are not as maintainable. – Reed Copsey Aug 28 at 20:13
vote up 0 vote down

You need a name for your anonymous function, and then, you can only do it as long as the name is in scope:

    var handler = new EventHandler(delegate(object o, EventArgs e)
    {
        //do something...
    };

    Subject.NewEvent += handler;

    // later on while handler is still in scope...

    Subject.NewEvent -= handler;
link|flag
vote up -2 vote down

You can create method for unregistering from all listeners of event. This not exactly what you whant, but sometimes it can be helpfull. For example (this really works =)) :

    class Program {
    static void Main(string[] args) {
        A someClass = new A();
        someClass.SomeEvent += delegate(object sender, EventArgs e) {
            throw new NotImplementedException();
        };

        someClass.ClearEventHandlers();
        someClass.FireEvent();

        Console.WriteLine("No error.");
    }

    public class A {
        public event EventHandler SomeEvent;

        public void ClearEventHandlers() {
            Delegate[] delegates = SomeEvent.GetInvocationList();
            foreach (Delegate delegate in delegates) {
                SomeEvent -= (EventHandler) delegate;
            }
        }

        public void FireEvent() {
            if (SomeEvent != null) {
                SomeEvent(null, null);
            }
        }
    }
}
link|flag
vote up 11 vote down

Give your instance of the anonymous delegate a name:

EventHandler<NewEventArg> handler = delegate(object sender, NewEventArgs e)
{
    //some code
};

Subject.NewEvent += handler;
Subject.NewEvent -= handler;
link|flag
2  
Why is this better than just making it a non-anonymous method? This is much, much less obvious. – Reed Copsey Aug 28 at 16:42
@dtb Don't you think this is very different from what I am asking? – PK Aug 28 at 16:43
1  
@PK: I think this is the closest you can get. You cannot unregister something that you cannot refer to. – dtb Aug 28 at 16:44
@Reed Copsey: It's definitely not better and I'd recommend your answer. But if he wants anonymous delegates this is the closest he can get. – dtb Aug 28 at 16:47
2  
@Reed: Anonymous delegates have the added benefit of creating a closure, which you cannot do with a non-anonymous method. If the OP wants to be able to include an in-scope value that can't be passed into the eventargs then this is the best method. – free-dom Aug 28 at 16:52
vote up 0 vote down

Do you need to un-register it for a reason other than leakage?

Regarding the "Or just allow the memory to leak" bit, when Subject is cleaned up by the Garbage Collector, your anonymous delegate should be cleaned up as well, so there shouldn't be a leak.

link|flag
Memory leak is one reason and other reason might be that I just want to stop listening to the event – PK Aug 28 at 16:40
Then you'd have to store it, as dtb's answer suggests – Walt W Aug 28 at 16:41
4  
Unfortunately, this can cause a leak. "this" will never get collected as long as "Subject" is still rooted, since the delegate behind Subject.NewEvent will hold a strong reference to "this" until Subject gets unrooted. The WeakEvent pattern exists for this exact reason. – Reed Copsey Aug 28 at 16:41
@Reed: Ah, so if you use "this" in the anonymous delegate, then it creates a circular reference (object <-> delegate) that prevents the garbage collector from cleaning up? Is that what you mean? – Walt W Aug 28 at 17:06

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.