.NET Framework Class Library
Timer Constructor
Initializes a new instance of the Timer class.
|
| Name | Description |
|---|
.gif) | Timer(TimerCallback) | Initializes a new instance of the Timer class with an infinite period and an infinite due time, using the newly created Timer object as the state object. |
.gif) .gif) .gif) | Timer(TimerCallback, Object, Int32, Int32) | Initializes a new instance of the Timer class, using a 32-bit signed integer to specify the time interval. |
.gif) .gif) .gif) | Timer(TimerCallback, Object, Int64, Int64) | Initializes a new instance of the Timer class, using 64-bit signed integers to measure time intervals. |
.gif) .gif) .gif) | Timer(TimerCallback, Object, TimeSpan, TimeSpan) | Initializes a new instance of the Timer class, using TimeSpan values to measure time intervals. |
.gif) .gif) .gif) | Timer(TimerCallback, Object, UInt32, UInt32) | Initializes a new instance of the Timer class, using 32-bit unsigned integers to measure time intervals. |
Top
Reference