Skip to content
Jef King edited this page Jun 27, 2018 · 1 revision

Use Case

The run at task is designed to run a task at a specified time daily on one machine. You can specify the hour or minute (of the hour) you want it to run at.

Dependency

See Coordinated Task

class MyTask : RunAtTask
{
	public MyTask()
		: base("Storage Account Connection String")
	{
	}
	public override void Run(DateTime currentTime)
	{
		//Process background work here.
	}
}
Clone this wiki locally