May 2010
Intermediate to advanced
1272 pages
61h 18m
English
AddHandler and RemoveHandlerTo provide your applications the capability of intercepting events raised from any object, you need to register for events. Registering means giving your code a chance to receive notifications and to take actions when it is notified that an event was raised from an object. To register for an event notification, you use the AddHandler keyword that requires two arguments: The first one is the event exposed by the desired object, and the second one is a delegate pointing to a method executed when your code is notified of an event occurring. The code in Listing 15.1 shows an example using a System.Timers.Timer object.
Listing 15.1 Registering and Catching Events
Comments within Listing 15.1 should ...
Read now
Unlock full access