Tagged Questions

26
votes
12answers
921 views

In a C# event handler, why must the “sender” parameter be an object?

According to http://msdn.microsoft.com/en-us/library/h0eyck3s%28VS.71%29.aspx the sender parameter in a C# event handler "is always of type object, even if it is possible to use a more specific type." …
17
votes
10answers
3k views

C# Events and Thread Safety

I frequently hear/read the following advice: Always make a copy of an event before you check it for null and fire it. This will eliminate a potential problem with threading where the event becomes …
14
votes
7answers
401 views

Event Signature in .NET — Using a Strong Typed ‘Sender’?

I fully realize that what I am proposing does not follow the .NET guidelines, and, therefore, is probably a poor idea for this reason alone. However, I would like to consider this from two possible …
14
votes
1answer
1k views

How to find event listeners on a DOM node?

I have a page where some event listeners are attached to input boxes and select boxes. Is there a way to find out which event listeners are observing a particular DOM node and for what event? Events …
14
votes
10answers
2k views

Cleanest Way to Invoke Cross-Thread Events

I find that the .NET event model is such that I'll often be raising an event on one thread and listening for it on another thread. I was wondering what the cleanest way to marshal an event from a …
13
votes
3answers
143 views

Breaking event cycles in GUIs

When writing GUIs, I've frequently come over the following problem: Assume you have a model and a controller. The controller has a widget W that is used to show a property X of the model. Because the …
12
votes
3answers
522 views

Advantages of .NET Rx over classic events?

.NET 4.0 beta 2 has introduced the IObservable and IObserver interfaces. What are the advantages compared to classic .NET events? Doesn't this solve the same problem?
12
votes
5answers
583 views

The proper way of raising events in the .NET framework

Currently "Avoid checking for null event handlers" is at the top of the answers to the post titled Hidden Features of C# and it contains severely misleading information. While I understand that Stack …
12
votes
5answers
707 views

Why use EventArgs.Empty instead of null?

I recall reading, on multiple occasions and in multiple locations, that when firing the typical event: protected virtual OnSomethingHappened() { this.SomethingHappened(this, EventArgs.Empty); } …
10
votes
11answers
847 views

Avoiding the woes of Invoke/BeginInvoke in cross-thread WinForm event handling?

I'm still plagued by background threading in a WinForm UI. Why? Here are some of the issues: Obviously the most important issue, I can not modify a Control unless I'm executing on the same thread …
10
votes
9answers
508 views

Why must someone be subscribed for an event to occur?

Some text before the code so that the question summary isn't mangled. class Tree { public event EventHandler MadeSound; public void Fall() { MadeSound(this, new EventArgs()); } static …
9
votes
2answers
1k views

How to correctly unregister an event handler

In a code review, I stumbled over this (simplified) code fragment to unregister an event handler: Fire -= new MyDelegate(OnFire); I thought that this does not unregister the event handler because …
8
votes
2answers
343 views

Event and delegate contravariance in .NET 4.0 and C# 4.0

While investigating this question I got curious about how the new covariance/contravariance features in C# 4.0 will affect it. In Beta 1, C# seems to disagree with the CLR. Back in C# 3.0, if you …
8
votes
1answer
190 views

What would I lose by abandoning the standard EventHandler pattern in .NET?

There's a standard pattern for events in .NET - they use a delegate type that takes a plain object called sender and then the actual "payload" in a second parameter, which should be derived from …
8
votes
6answers
346 views

Event system in Python

What event system for Python do you use? I'm already aware of pydispatcher, but I was wondering what else can be found, or is commonly used? I'm not interested in event managers that are part of …

1 2 3 4 5 98 next
15 30 50 per page