Answer Posted / rathi
The event-delegation model has two advantages over the
event-inheritance model. First, it enables event handling
to be handled by objects other than the ones that generate
the events (or their containers). This allows a clean
separation between a component's design and its use. The
other advantage of the event-delegation model is that it
performs much better in applications where many events are
generated. This performance improvement is due to the fact
that the event-delegation model does not have to repeatedly
process unhandled events, as is the case of the event-
inheritance
model.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is a .DLL and .EXE files called in .NET?
Do you know the difference between the stack and the heap?
Tell us what is a sealed class?
What is singleton activation mode in .net?
Can you give an example of when it would be appropriate to use a web service as opposed to a non-serviced .NET component
Should I implement finalize on my class? Should I implement idisposable?
Explain how viewstate is being formed and how it's stored on client in .net?
Explain how com+ related to the dna architecture?
Explain .NET architecture?
What are multicast delegates?
Explain me why do we use msmq?
How to debug failed assembly binds?
As you know read-only variables and constants have many similarities, but what is at least one way that they differ?
Explain Creational design pattern in .NET?
Please explain what is reflection and what is it for?