You can create an event with explicit accessors :
public event EventHandler TimerElapsed
{
add { timer.Elapsed += value; }
remove { timer.Elapsed -= value; }
}
The clients of your class can subscribe directly to the TimerElapsed event :
appTimer.TimerElapsed += SomeHandlerMethod;
If you want to use a RegisterHandler method as shown in your code, the type of the parameter should be EventHandler
EDIT: note that with this approach, the value of sender parameter will be the Timer object, not the MyAppTimer object. If that's a problem, you can do that instead :
public MyAppTimer()
{
...
timer.Elapsed += timer_Elapsed;
}
private void timer_Elapsed(object sender, EventArgs e)
{
EventHandler handler = this.TimerElapsed;
if (handler != null)
handler(this, e);
}
