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)

Related questions

0 votes
asked Mar 16, 2022 in Azure Function by sharadyadav1986
0 votes
asked Nov 28, 2022 in Fortify code scanner by Robin
...