Wait
Will make the code wait for specified amount of time, in ms
Signature
public void Wait(int milliseconds)
Parameters
milliseconds
int required
No description provided.
Return Type
void
Example
using System;
public class CPHInline
{
public bool Execute()
{
CPH.SendMessage("This is the first message.");
//Wait 5 seconds CPH.Wait(5000);
CPH.SendMessage("This is the second message.");
return true;
}
}