Registering for timer elapsed events - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T22:20:25Z http://stackoverflow.com/feeds/question/915359 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/915359/registering-for-timer-elapsed-events 2 Registering for timer elapsed events Draco 2009-05-27T12:10:34Z 2009-05-28T09:40:54Z <p>I want to create a class that initializes a timer which will be used as a central core for other class members to register themselves for the timer elapsed event. My problem is that I don't really know how to expose the timer elapsed event to other classes. One solution, that I think might work is that I simply expose the timer as a public property which will return the timer object and I can call the timer elapsed event from this object, for example:</p> <pre><code>MyAppTimer appTimer = new MyAppTimer(); Timer timer = appTimer.GetAppTimer; timer.Elapsed += SomeMethod; </code></pre> <p>But with this solution I will be exposing the entire timer which I don't want. How can I pass in a method in the MyAppTimer class which will register the method with the timer's elapsed event internally? Is it something to do with delegates? Maybe something like:</p> <pre><code>public void RegisterHandler(someStuffGoesHere) //What do I pass in here? { timer.Elapsed += someStuffGoesHere; } </code></pre> http://stackoverflow.com/questions/915359/registering-for-timer-elapsed-events/915375#915375 2 Answer by Thomas Levesque for Registering for timer elapsed events Thomas Levesque 2009-05-27T12:13:40Z 2009-05-28T09:40:54Z <p>You can create an event with explicit accessors :</p> <pre><code>public event EventHandler TimerElapsed { add { timer.Elapsed += value; } remove { timer.Elapsed -= value; } } </code></pre> <p>The clients of your class can subscribe directly to the TimerElapsed event :</p> <pre><code>appTimer.TimerElapsed += SomeHandlerMethod; </code></pre> <p>If you want to use a RegisterHandler method as shown in your code, the type of the parameter should be EventHandler</p> <p><strong>EDIT:</strong> 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 :</p> <pre><code>public MyAppTimer() { ... timer.Elapsed += timer_Elapsed; } private void timer_Elapsed(object sender, EventArgs e) { EventHandler handler = this.TimerElapsed; if (handler != null) handler(this, e); } </code></pre> http://stackoverflow.com/questions/915359/registering-for-timer-elapsed-events/915382#915382 0 Answer by Grzenio for Registering for timer elapsed events Grzenio 2009-05-27T12:14:57Z 2009-05-27T12:14:57Z <p>You want to expose an Event on your class, something like:</p> <pre><code>class A { public event EventHandler&lt;EventArgs&gt; Elapsed; private void OnElapsed() { if(Elapsed!=null) Elapsed(new EventArgs()); } } </code></pre> <p>in the OnElapsed private method you have an example how to raise the event. You then use the class A in the same way you would use Timer.</p> http://stackoverflow.com/questions/915359/registering-for-timer-elapsed-events/915412#915412 2 Answer by Andy Whitfield for Registering for timer elapsed events Andy Whitfield 2009-05-27T12:20:55Z 2009-05-27T12:20:55Z <p>As others have mentioned, exposing an Event is probably the way you want to go, but to answer your question about the type required in your RegisterHandler method, it would look something like:</p> <pre><code>using System.Timers; ...snip... public void RegisterHandler(ElapsedEventHandler callback) { timer.Elapsed += callback; } </code></pre>