Raising Events
You declare your own events utilizing the Event
keyword. This keyword requires you to specify the event name and eventually a delegate signature. Although not mandatory (Event
allows specifying no arguments), specifying a delegate signature is useful so that you can take advantage of AddHandler
for subsequently intercepting events. The code in Listing 15.3 shows an alternative implementation of the Person
class in which an event is raised each time the LastName
property is modified.
Notice that in this particular case you need to implement the LastName
property the old-fashioned way, ...
Get Visual Basic® 2010 Unleashed now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.