atifaziz / NCrontab

Crontab for .NET

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

6-part schedule doesn't work

rbiq opened this issue · comments

mySchedule = CrontabSchedule.Parse(this.scheduleText);

NCrontab.CrontabException: ''3 * * * * *' is an invalid crontab expression. It must contain 5 components of a schedule in the sequence of minutes, hours, days, months, and days of week.'

mySchedule = CrontabSchedule.Parse(this.scheduleText, new CrontabSchedule.ParseOptions
{
IncludingSeconds = true
});