Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 C# Timer Trigger Azure 功能,我想在每个月的特定日期触发。它的 cron 表达式应该是什么?
例如:在每个月的 8 号和 20 号触发工作。
您的触发器可能类似于:
从 azure cron 表达式开始:
{second} {minute} {hour} {day} {month} {day-of-week}
表达方式:
0 0 12 8,20 * ?
这将触发每月 8 日和 20 日的中午