CreateTimer (TimerCallback callback, object state, uint dueTime, uint period)
method
Timer that will be stopped at the end of the script
Syntax
public Timer CreateTimer (TimerCallback callback,object state,uint dueTime,uint period)
Parameters
callback — TimerCallback
state — object
dueTime — uint
period — uint
Return
Timer
Returns the timer that will be stopped at the end of the script
Example
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Drawing;
using PTLRuntime.NETScript;
namespace Alert
{
public class Alert : NETStrategy
{
private static System.Threading.Timer aTimer;
public override void Init()
{
aTimer = CreateTimer(OnTimedEvent,null,0,500);
}
private void OnTimedEvent(object source)
{
runAlert();
}
private void runAlert()
{
Alert("Alert");
}
}
}
Discussion
Join PTMC community to post your comments
No comments yet. Be the first.