Click or drag to resize
ITimersSetTimer Method (String, Int32)
Activates the timer inKey to run for the milliseconds amount of inTimeoutMS

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

Parameters

inKey
Type: SystemString
the timer's name key
inTimeoutMS
Type: SystemInt32
the amount of milliseconds for the timer to run
Examples
Timers.SetTimer("MyTimer", 60000) will start the timer "MyTimer" to run for 60000 MS (1 minute)
See Also