Click or drag to resize
ITimersResumeTimer Method
Continue running the timer inKey from the point it was paused

Namespace: SurveyToGo.UserLogic.Interfaces
Assembly: UserLogicInt.Pocket (in UserLogicInt.Pocket.dll) Version: 1.0.4.0
Syntax
C#
void ResumeTimer(
	string inKey
)

Parameters

inKey
Type: SystemString
the timer's name key
Examples
If the timer "MyTimer" was set to run 60000 MS (1 minute), and was paused after running for 10000 (10 seconds), Timers.ResumeTimer("MyTimer") will re-activate the timer from the point it was paused, and if it won't be paused again on the way, it will run for another 50 seconds.
See Also