From https://github.com/atifaziz/NCrontab README.md
The default format parsed by CrontabSchedule.Parse is the five-part cron
format. In order to use the six-part format that includes seconds, pass a
CrontabSchedule.ParseOptions to Parse with IncludingSeconds set to
true. For example:
var s = CrontabSchedule.Parse("0,30 * * * * *",
new CrontabSchedule.ParseOptions
{
IncludingSeconds = true
});
That would be very useful and is backward compatible.
From https://github.com/atifaziz/NCrontab README.md
The default format parsed by
CrontabSchedule.Parseis the five-part cronformat. In order to use the six-part format that includes seconds, pass a
CrontabSchedule.ParseOptionstoParsewithIncludingSecondsset totrue. For example:That would be very useful and is backward compatible.