Click here to Skip to main content
15,883,883 members
Articles / Programming Languages / C#
Article

Custom Event Handlers

Rate me:
Please Sign up or sign in to vote.
1.27/5 (5 votes)
11 Apr 20071 min read 26K   209   7   3
Improved custom implementation of event handling mechanism in c#

Introduction

I found it useful to use custom EventHandlers instead of framework's EventHandler and EventHandler<T> delegates.

  1. Often I had a mistake of multiple assigns of same method to delegate what caused problems.
  2. Calling UI thread from different thread is forbidden and problematic in framework and I found on internet nice solution that should be part of Event class for consistency.
  3. I'd like to have nicer event calling mechanism without checking for null .


Solution : class Event.cs .

  • Uses standard framework delegates EventHandler and EventHandler<T> so it can be easy used in interfaces interchangeable with standard events.
  • Exception when duplicate method assign.
  • Automatic using of ISynchronizeInvoke when calling UI thread.
  • Uses standard framework EventArgs ;
  • Serialization support (no attributes to bypass serialization needed)
  • Event class contains also static methods for firing EventHandlers with support of ISynchronizeInvoke for UI firing from different thread. Syntax: Event.Fire(...); Event.SafeFire(...);

Using the code

-Event myEvent = new Event() (uses EventHandler internally) or Event<T> myEvent = new Event<T>() (uses EventHandler<T>)
-assigning via standard += -=
-myEvent.Fire(senderObject) , myEvent.Fire(args,senderObject) and for safe UI firing support myEvent.SafeFire(...
- for usage in interfaces use in class:
      public event EventHandler MyEvent
       {
           add { myEvent+= value; }
           remove { myEvent -= value; }
       }

and in interface then standard : event EventHandler MyEvent;

History

9 May 2007 - Initial release on Code Project.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralmyEvent.SafeFire problem Pin
Bill SerGio, The Infomercial King1-Aug-07 3:32
Bill SerGio, The Infomercial King1-Aug-07 3:32 
GeneralUpdated Sample Pin
IgDev9-Jul-07 8:08
IgDev9-Jul-07 8:08 
Can you make your sample .zip include 1-3 console applications with discrete business classes that make use of your Event framework?
GeneralRe: Updated Sample Pin
Rene Dohan9-Jul-07 11:09
Rene Dohan9-Jul-07 11:09 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.