System.Timers Namespace
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides the Timer component, which allows you to raise an event on a specified interval.
Classes
ElapsedEventArgs |
Provides data for the Elapsed event. |
Timer |
Generates an event after a set interval, with an option to generate recurring events. |
TimersDescriptionAttribute |
Sets the description that visual designers can display when referencing an event, extender, or property. |
Delegates
ElapsedEventHandler |
Represents the method that will handle the Elapsed event of a Timer. |
Remarks
The Timer component is a server-based timer, which allows you to specify a recurring interval at which the Elapsed event is raised in your application. You can then handle this event to provide regular processing. For example, suppose you have a critical server that must be kept running 24 hours a day, 7 days a week. You could create a service that uses a Timer to periodically check the server and ensure that the system is up and running. If the system is not responding, the service could attempt to restart the server or notify an administrator.
The server-based Timer is designed for use with worker threads in a multithreaded environment. Server timers can move among threads to handle the raised Elapsed event, resulting in more accuracy than Windows timers in raising the event on time.