vote up 6 vote down star

It's known that you should declare events that take as parameters (object sender, EventArgs args). Why?

flag

63% accept rate
it provides you with a clear, "return to sender" type message, you know where it came from, and you have the messsage itself, at the time you need to do something, even if you have a custom event args, it should derive from system.eventargs – DevelopingChris Sep 19 '08 at 19:36
if you just pass in, your object, you are coupling the handler and the caller, and its just unnecessary, just create a stub object that is a decorator for your object, thats just for events, and make this object live, close to the event, not its cake. – DevelopingChris Sep 19 '08 at 19:37

8 Answers

vote up 8 vote down check

This allows the consuming developer the ability to write a single event handler for multiple events, regardless of sender or event.

Edit: Why would you need a different pattern? You can inherit EventArgs to provide any amount of data, and changing the pattern is only going to serve to confuse and frustrate any developer that is forced to consume this new pattern.

link|flag
1  
I usually just pass whatever I need in the handler. If I need an event with no information, I declare it void. If I need to give the event 1 specific object, I pass that alone. It's not that I have a different pattern, I'm just not sure of the necessity of a pattern (outside framework code). – ripper234 Sep 19 '08 at 19:28
1  
You pass what you need, but that's needlessly inflexible, and breaking an established best-practice without any gain in function. – Greg Hurlman Sep 19 '08 at 19:31
+1 greg, bad arch to couple your observers – DevelopingChris Sep 19 '08 at 19:38
vote up 5 vote down

Because it's a good pattern for any callback mechanism, regardless of language. You want to know who sent the event (the sender) and data that is pertinent to the event (EventArgs).

link|flag
vote up 2 vote down

It is a good pattern to use, that way what ever implements the event can find what was sending it.

Also overriding the EventArgs and passing data through them is the best method. The EventArgs are a base class. If you look at various controls that call events, they have overridden EventArgs which gives you more information about the event.

Even if you don't need the arguments to do the event, if you do not include them with the first run of the framework and want to add them later, you break all previous implementations, and have to re-write them. Plus if you a creating a framework and going to distribute that it becomes worse because everybody that uses your framework will need to refactor.

link|flag
vote up 1 vote down

It seemed that this was Microsoft's way to evolve the event model over time. It also seems that they are also allowing another way to do it with the "new" Action delegate and it's variations.

link|flag
vote up 1 vote down

Using a single parameter, EventArgs, for the data passed by an event allows you to add data to your event in future versions of your software without breaking existing consumers. You simply add new members to an existing EventArgs-derived class, or create a derived class with the new members.

Otherwise consistency and the principle of least surprise justify using EventArgs for passing data.

As for sender, in some (but not all) cases it's useful to know what type sent the event. Using a type other than object for the sender argument is too restrictive: it would mean that other senders couldn't reuse the same event signature.

link|flag
vote up 0 vote down

Actually this is debatable whether or not this is the best practice way to do events. There is the school of thought that as events are intended to decouple two segments of code, the fact that the event handler gets the sender, and has to know what type to cast the sender into in order to do anything with it.

link|flag
vote up 0 vote down

Chris Anderson says in the Framework Design Guidelines book:

[T]his is just about a pattern. By having event arguments packaged in a class you get better versioning semantics. By having a common pattern (sender, e) it is easily learned as the signature for all events.

There are situations mostly involving interop that would require deviation from this pattern.

link|flag
vote up 0 vote down

Sometimes you would like to force all of your event consumers to use a particular event parameter, for example, a security event which passes a boolean parameter, true for good, false for bad. In this case you want your consumer to be painfully aware of the new parameter, i.e. you want your consumers to be coupled with that parameter. Take note, your consumers are still decoupled from your event firing class, but not from your event.

I suspect that this scenario applies to a large number of cases and in those cases the value of EventArgs is greatly reduced.

link|flag

Your Answer

Get an OpenID
or

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