0 votes
in Azure Function by

What is the simplest way to run a timer-triggered Azure Function locally?

1 Answer

0 votes
by

We can refer to a cron expression in the app settings:

public static void Run([TimerTrigger("%TimerSchedule%")]TimerInfo myTimer, TraceWriter log)

...