Quartz.Net CronExpression Builder

后端 未结 3 1179
北海茫月
北海茫月 2021-02-06 04:38

I have some GUI controls forming a typical windows scheduler (Date\\Time pickers, check boxes, etc) that I would like to build a CronExpression string from.

Does anyone

3条回答
  •  悲&欢浪女
    2021-02-06 04:59

    Cron expressions in Quartz.Net are made up of 7 sub-expressions:

    1. Seconds
    2. Minutes
    3. Hours
    4. Day-of-Month
    5. Month
    6. Day-of-Week
    7. Year (optional field)
    

    I usually use CronMaker to create my own cron expressions.

    Another option is this other tool which works pretty well.

提交回复
热议问题