NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Timer.Interval

Gets or sets the interval between timer events.

[Visual Basic]
Public Property Interval As Double
[C#]
public double Interval {get; set;}
[C++]
public: __property double get_Interval();
public: __property void set_Interval(double);
[JScript]
public function get Interval() : double;
public function set Interval(double);

Property Value

The number of milliseconds between timer events. The value must be at least 1 millisecond.

Remarks

If the Interval property is set after the timer has started, the count will be restarted.

See Also

Timer Class | Timer Members | System.Timers Namespace