按時間觸發

SDK 支援基於具有 6 個欄位{second} {minute} {hour} {day} {month} {day of the week})的 CRON 表示式觸發的時間。它需要在 JobHostConfiguration 上進行額外設定 : **** ****

config.UseTimers();

你的時間觸發函式會響應此語法:

// Runs once every 5 minutes
public static void CronJob([TimerTrigger("0 */5 * * * *")] TimerInfo timer)
{
    
}

// Runs immediately on startup, then every two hours thereafter
public static void StartupJob([TimerTrigger("0 0 */2 * * *", RunOnStartup = true)] TimerInfo timerInfo)
{
    
}