Meziantou.Framework.Scheduling
4.1.3
Prefix Reserved
dotnet add package Meziantou.Framework.Scheduling --version 4.1.3
NuGet\Install-Package Meziantou.Framework.Scheduling -Version 4.1.3
<PackageReference Include="Meziantou.Framework.Scheduling" Version="4.1.3" />
<PackageVersion Include="Meziantou.Framework.Scheduling" Version="4.1.3" />
<PackageReference Include="Meziantou.Framework.Scheduling" />
paket add Meziantou.Framework.Scheduling --version 4.1.3
#r "nuget: Meziantou.Framework.Scheduling, 4.1.3"
#:package Meziantou.Framework.Scheduling@4.1.3
#addin nuget:?package=Meziantou.Framework.Scheduling&version=4.1.3
#tool nuget:?package=Meziantou.Framework.Scheduling&version=4.1.3
Meziantou.Framework.Scheduling
This package supports 2 schedule formats:
- Recurrence rules (RRULE) as defined in RFC5545 and RFC2445
- Cron expressions
Recurrence rules (RRULE)
Parse recurrence rules:
var rrule = "FREQ=WEEKLY;BYDAY=MO,WE;COUNT=10";
if (RecurrenceRule.TryParse(rrule, out var rule, out var error))
{
var dtStart = new DateTime(2024, 01, 01, 09, 00, 00); // The DTSTART of the event
var occurrences = rule.GetNextOccurrences(dtStart).ToArray();
}
else
{
Console.WriteLine(error);
}
The start date passed to GetNextOccurrences is the DTSTART of the recurrence, not the instant to search from:
COUNT counts the occurrences from it, and INTERVAL and the periods (weeks, months, ...) are aligned on it. Passing
DateTime.Now starts a new series at that instant, so the 10 occurrences of FREQ=WEEKLY;INTERVAL=2;COUNT=10 would
restart, on other dates, at every call. To get the occurrences of a series that are on or after a given date, enumerate from DTSTART and skip the
earlier ones:
var upcoming = rule.GetNextOccurrences(dtStart).SkipWhile(occurrence => occurrence < DateTime.Now).Take(5);
The parser follows RFC 5545 section 3.3.10 strictly: an unknown or misspelled rule part (CONUT=3, COUNT=3) makes the
rule invalid, as do the combinations the RFC forbids, such as BYMONTHDAY with FREQ=WEEKLY or BYSETPOS without
another BYxxx rule part. The numbers follow the ABNF: BYSECOND, BYMINUTE, BYHOUR and BYMONTH have 1 or 2
digits and no sign, COUNT and INTERVAL have digits and no sign, BYMONTHDAY, BYWEEKNO and the ordinal of BYDAY
have 1 or 2 digits and an optional sign, and BYYEARDAY and BYSETPOS 1 to 3 digits and an optional sign. So
BYHOUR=07 and BYMONTHDAY=+01 are valid, but BYHOUR=+7, BYHOUR=007, COUNT=+5 and BYMONTH=January are not.
The value must not include the property name: RRULE:FREQ=DAILY is rejected, as is an empty value, and TryParse
reports why.
The RFC 2445 extension rule parts, whose name starts with X- (FREQ=DAILY;X-VENDOR-FLAG=1), are accepted, written back
at the end of Text, and ignored by the evaluation. The RFC 7529 RSCALE and SKIP rule parts are accepted with their
GREGORIAN and OMIT values, which are the evaluation this package implements.
A rule can be modified after parsing. EndDate and Occurrences cannot both be set, and the values of the BYxxx lists
are validated when the occurrences are enumerated, which throws an InvalidOperationException for a value such as
ByHours = [24]. The rule parts are read when the enumeration starts, so modifying the rule does not affect an
enumeration in progress. Text is always formatted with the invariant culture.
A rule cannot express a fraction of a second, so the occurrences take the fractional second of the start date, as they
take the other time components the rule does not specify. FREQ=DAILY;BYHOUR=9,10 from 08:15:30.5 produces
09:15:30.5 and 10:15:30.5. UNTIL has the same one-second precision, so FREQ=DAILY;UNTIL=20240103T100000 from
2024-01-01 10:00:00.123 includes 2024-01-03 10:00:00.123.
BYWEEKNO numbers the weeks as RFC 5545 defines them: week 1 is the first week, starting on WKST, that holds at least
4 days of the year. A FREQ=YEARLY rule with BYWEEKNO is evaluated on week-numbering years, which can start in the
last days of December and end in the first days of January, so INTERVAL and BYSETPOS apply to those years:
FREQ=YEARLY;BYWEEKNO=1;BYSETPOS=-1 from 2024-01-01 produces 2024-01-07, 2025-01-05, 2026-01-04. The first period is the
week-numbering year holding the start date. BYMONTH, BYMONTHDAY and BYYEARDAY still apply to the calendar date of
each day.
Convert a recurrence rule to human-readable text:
var culture = CultureInfo.GetCultureInfo("en-US");
RecurrenceRule.Parse("FREQ=DAILY").GetHumanText(culture); // every day
RecurrenceRule.Parse("FREQ=WEEKLY;INTERVAL=3;BYDAY=TU;UNTIL=20150101").GetHumanText(culture); // every 3 weeks on Tuesday until January 1, 2015
Supported languages for human-readable text:
- English (
en,en-*, and invariant culture) - French (
fr,fr-*)
The language is read from the culture name, so fr-CA is described in French and de-DE is not supported whether or
not invariant globalization mode is enabled. GetHumanText returns null for an unsupported language, and for a class
deriving from RecurrenceRule outside of this library, whose occurrences its rule parts may not describe.
The text describes the rule parts as they are written, without a start date:
- It does not account for how
INTERVALaligns with the start date.FREQ=HOURLY;INTERVAL=2;BYHOUR=9,10,11reads "every other hour at hours 9, 10 and 11", but from08:15it only produces10:15. - It does not mention the components taken from the start date.
FREQ=DAILY;BYMINUTE=5reads "every day at minute 5", and from08:15it produces08:05every day. BYSETPOSselects among the instances of each period of the frequency:FREQ=WEEKLY;BYDAY=MO,FR;BYSETPOS=1;COUNT=3reads "every week on Monday and Friday, only the first occurrence of each week, for 3 times".WKSTis mentioned whenever it changes the occurrences for some start date: withBYWEEKNO, and in aWEEKLYrule withBYDAYwhenINTERVALis greater than 1 (the week holding the start date is the first one) or whenBYSETPOSgroups the days differently.FREQ=WEEKLY;INTERVAL=2;BYDAY=SU;WKST=SUreads "every other week on Sunday, with weeks starting on Sunday".- A rule with
COUNT=0has no occurrence and reads "never".
English always writes dates as month-day-year and times with a 24-hour clock, whatever the region of the culture
(en-GB included). A UTC UNTIL is shown in UTC ("until January 1, 2025 at 10:30 UTC"), not in local time.
Time zones
GetNextOccurrences also accepts a time zone. The occurrences keep their wall-clock time across a daylight
saving transition, so each one carries the UTC offset in effect at that moment:
var rrule = RecurrenceRule.Parse("FREQ=DAILY;BYHOUR=9");
var timeZone = TimeZoneInfo.FindSystemTimeZoneById("America/New_York");
foreach (var occurrence in rrule.GetNextOccurrences(new DateTime(2024, 03, 09), timeZone).Take(3))
{
Console.WriteLine(occurrence);
}
// 2024-03-09 09:00:00 -05:00
// 2024-03-10 09:00:00 -04:00 <- the offset changes, the wall clock does not
// 2024-03-11 09:00:00 -04:00
The start date is read as a wall-clock time in that time zone, and a DateTimeOffset overload accepts an
instant instead. A time zone identifier can be passed directly, which TimeZones.Find resolves:
var occurrences = rrule.GetNextOccurrences(startDate, "America/New_York");
A local time that a transition makes invalid or ambiguous is resolved as RFC 5545 section 3.3.5 requires:
an ambiguous time keeps its first occurrence, and an invalid time is read with the UTC offset in effect
before the gap, so 02:30 on a spring-forward day surfaces as 03:30 at the new offset. This is what
errata 4271 settles for recurrence instances; only an invalid
date, such as February 30, is dropped from the recurrence set.
Reading a gap that way moves each of its times forward by the length of the gap, so an occurrence in the gap
can denote an instant later than the occurrences that follow it. The occurrences are still returned in
increasing order: FREQ=MINUTELY;INTERVAL=40 from 00:00 in Paris on 2026-03-29 produces 01:20+01:00,
03:00+02:00 (from 02:00), 03:20+02:00, 03:40+02:00 (from 02:40), 04:00+02:00. An occurrence that
denotes the very same instant as another one, as 02:00 and 03:00 do for an hourly recurrence, is ignored per
RFC 5545 section 3.8.5.3. COUNT counts the occurrences in the order the rule generates their wall-clock
times, and a duplicate does not count again. Across a backward transition the repeated hour is visited once,
so its second pass is not produced.
The DateTimeOffset overloads never return an occurrence before the start instant, even when it is the second
pass of the repeated hour, whose wall-clock times RFC 5545 reads as the first pass. An occurrence whose instant
is outside the range of DateTimeOffset, near year 1 or year 9999, is not returned.
UNTIL is honoured as an instant when it is a UTC value, and as a wall-clock reading when it is floating.
CronExpression supports the same overloads.
UNTIL
A UTC UNTIL (20240110T100000Z), or one carrying an offset, is parsed as a Utc EndDate and denotes an instant.
A floating UNTIL (20240110T100000) or a date (20240110) is parsed as an Unspecified EndDate and denotes a
wall-clock reading; a date is stored as its first instant and written back as a date.
A date designates the whole day, so FREQ=DAILY;UNTIL=20240110 from 2024-01-08 09:00 includes 2024-01-10 09:00.
Setting EndDate replaces the date with a date-time, which is an exact bound.
Without a time zone, an instant bounds the occurrences of a Utc or Local start date, or of a DateTimeOffset start
date, by instant, and the occurrences of an Unspecified start date by wall clock. A wall-clock UNTIL always bounds
them by wall clock.
iCalendar
InternetCalendar reads and writes events in the iCalendar format.
Reading
InternetCalendar.Parse reads an iCalendar object from a string, a ReadOnlySpan<char>, a TextReader or
a UTF-8 Stream, and TryParse reports why the content was rejected instead of throwing:
var calendar = InternetCalendar.Parse(File.ReadAllText("invite.ics"));
foreach (var @event in calendar.Events)
{
Console.WriteLine($"{@event.Start:g} {@event.Summary}");
}
if (!InternetCalendar.TryParse(content, out var parsed, out var error))
{
Console.WriteLine(error);
}
The parser unfolds content lines, decodes TEXT values and reads the three date-time forms of RFC 5545
section 3.3.5: 20240102T080000Z becomes a Utc value, 20240102T080000 a floating (Unspecified) one,
and DTSTART;TZID=America/New_York:20240102T080000 a wall-clock value together with Event.TimeZone.
A leap second (235960) is read as the 59th second.
The identifier of a TZID parameter is resolved, in order:
- as a time zone of the platform (
TimeZoneInfo.FindSystemTimeZoneById); - from the
VTIMEZONEcomponent of the calendar with thatTZID, which builds a customTimeZoneInfowhoseIdis the identifier, so the event is written back with it. Every onset of the sub-components (DTSTART,RDATE, bounded or open-endedRRULE) is expanded, and each year becomes one adjustment rule holding its standard offset and at most one daylight saving period, including a period spanning the new year and a change of the standard offset (the latter needs .NET 6 or later). An open-endedSTANDARD/DAYLIGHTpair expressible as a floating (BYDAY=-1SU) or fixed (BYMONTHDAY=22) transition becomes a single open-ended rule; any other open-ended recurrence, such asBYDAY=SU;BYMONTHDAY=2,3,4,5,6,7,8, is expanded for one 400-year cycle of the Gregorian calendar, which is then repeated until year 9998, whatever the year of itsDTSTART(Outlook writes 1601). A year whose offset changes more often than that, such as a daylight saving period suspended during Ramadan, cannot be expressed by aTimeZoneInfo, so its shortest periods take the offset of the one before; - as the IANA identifier ending a prefixed one, such as
/mozilla.org/20050126_1/America/New_York.
An identifier that still cannot be resolved does not reject the calendar: DTSTART and DTEND are read as
floating values and Event.TimeZone stays null. Only DTSTART and DTEND determine Event.TimeZone;
CREATED, LAST-MODIFIED and DTSTAMP are always read as Utc values, converted from their TZID when they
carry one, and taken as UTC when they are floating. A value whose TZID moves it outside the range of DateTime
in UTC, such as DTSTAMP;TZID=America/New_York:99991231T230000, rejects the calendar.
An Event holds a single time zone, so an event whose DTSTART and DTEND carry different TZID values is
rejected rather than read with one of them. More generally, the calendar is read as a whole: a single invalid
property, such as an invalid RRULE, STATUS, DURATION or date-time, rejects it, and TryParse reports which.
A DATE value, DTSTART;VALUE=DATE:20240101 (or a date without the parameter), sets Event.IsAllDay and is
read as the first instant of the day, without a time zone. An event without STATUS has a null Event.Status.
An event with a DURATION rather than a DTEND (having both rejects the calendar) gets Event.End computed as
RFC 5545 section 3.3.6 describes: the days and weeks are nominal, so they are added to the wall clock of the start
(P1D from DTSTART;TZID=America/New_York:20240309T100000 ends at 20240310T100000 although the day lasts 23
hours), while the hours, minutes and seconds are exact, so they are added to the instant the start denotes
(PT24H ends at 20240310T110000). An all-day event takes a number of days or weeks. The event is written back
with that DURATION, not a DTEND, as long as End still equals the start plus the duration; once End or
Start changes, DTEND is written instead. A DURATION without DTSTART is kept in Event.RawProperties.
The first RRULE goes to Event.RecurrenceRule; RFC 5545 discourages any further one, which is kept in
Event.RawProperties and written back.
The parameters of ORGANIZER and ATTENDEE, such as CN, ROLE, PARTSTAT or RSVP, go to
Organizer.Parameters and Attendee.Parameters in order, and the parameters of the other properties the model
reads go to Event.IdParameters, SummaryParameters (SUMMARY;LANGUAGE=fr:Bonjour), DescriptionParameters
(ALTREP), StatusParameters, CreatedParameters, LastModifiedParameters, DateTimeStampParameters,
StartParameters, EndParameters (of DTEND or DURATION) and RecurrenceRuleParameters. The VALUE and
TZID parameters of a date-time are represented by the model itself, so they are not stored there.
A parameter value is stored as a param-value list, quotes included (CN="Doe, Jane",
DELEGATED-FROM="mailto:a@example.com","mailto:b@example.com"), with the RFC 6868 encoding decoded: ^^ is
^, ^n a line feed and ^' a ". A value holding a ", such as CN="George ^'Babe^' Ruth" or the invalid but
common CN=Jane "JD" Doe, is stored without its delimiters, as George "Babe" Ruth. A TZID is looked up by its
decoded value. VERSION is kept as written, so VERSION:2.0;2.0 is not escaped when written back.
An event property the model does not have goes to Event.AdditionalProperties when its value type is a single
TEXT value — an X- property such as X-MICROSOFT-CDO-BUSYSTATUS:OOF, a property RFC 5545 does not define, or a
TEXT property such as LOCATION or CLASS — it has no parameter, it occurs once, and its value is written back
unchanged by TEXT escaping. Any other one goes to Event.RawProperties, which keeps its name, parameters and
value verbatim: a property with parameters (EXDATE;TZID=Europe/Paris:20240104T100000), a repeated one, a
property whose value type is not TEXT whatever its value (URL:https://example.com/, EXDATE:20240104T100000,
GEO:37.38;-122.08, SEQUENCE:1), a list or structured TEXT property (CATEGORIES:WORK, REQUEST-STATUS),
or a TEXT value that escaping would alter (X-LIST:a,b). A value that is not TEXT is therefore never
unescaped. The value type comes from the property name; a VALUE parameter is a parameter, so a property carrying
one is kept raw. Calendar properties go to InternetCalendar.AdditionalProperties and
InternetCalendar.RawProperties the same way. The components the model does not represent — VTODO,
VJOURNAL, VFREEBUSY and VALARM — are skipped, but every component they nest has to be terminated by the
END naming it. Trailing white space after a component name, as in BEGIN:VEVENT , is ignored.
InternetCalendar.Parse(Stream) removes the folds before decoding the UTF-8 content, so a producer folding a
line in the middle of the UTF-8 sequence of a character does not produce replacement characters. A stream
starting with a UTF-16 or UTF-32 byte order mark is decoded first.
Properties written
Content lines longer than 75 UTF-8 octets are folded, never inside a character.
The calendar is formatted before anything is written, so
ToIcsnever produces partial output: a value that cannot be written, such as anEvent.Statusthat is not a member ofEventStatus, throws anInvalidOperationExceptionand nothing reaches theTextWriteror theStream.CREATED,LAST-MODIFIEDandDTSTAMPare written in UTC (anUnspecifiedvalue is taken as UTC), and are omitted when not set, as areDTSTART,DTEND,STATUSandDESCRIPTION. RFC 5545 requiresDTSTAMP, so setEvent.DateTimeStampto produce a conforming event; the library does not use the current time, which keeps the output deterministic.Event.IsAllDaywrites the date part ofStartandEndasDTSTART;VALUE=DATE:/DTEND;VALUE=DATE:, ignoringEvent.TimeZone.An attendee or an organizer without an address is not written. The address is written in its escaped form (
Uri.AbsoluteUri), so a line break or another control character in it is percent-encoded rather than starting a new line, and a relativeUriis rejected by theInternetCalendarUserAddressconstructor.Organizer.Parameters,Attendee.Parametersand the parameter collections ofEventvalidate a parameter when it is added, asInternetCalendarPropertydoes: only anullvalue, or one containing a control character other than a tab or a line feed, is rejected. A param-value list is written as such, and any other value as a quoted-string;^, a line feed and, in a quoted-string,"are written with the RFC 6868 encoding, sonew("CN", "Jane \"JD\" Doe")is writtenCN="Jane ^'JD^' Doe"andnew("CN", "a:b")is writtenCN="a:b":@event.Attendees.Add(new Attendee { Address = new InternetCalendarUserAddress("jane@example.com"), Parameters = { new("CN", "\"Doe, Jane\""), new("PARTSTAT", "ACCEPTED"), new("RSVP", "TRUE") }, });The
UNTILofEvent.RecurrenceRuleis written with the value type ofDTSTART, as RFC 5545 section 3.3.10 requires, without modifying the rule: aDATEfor an all-day event (the date ofUNTILin the frame of the start), a floating date-time for a floating start (aDATEbecoming the end of that day), and a UTC date-time for a start in UTC, in local time or withEvent.TimeZone(a floating value or aDATEbeing read in that time zone, the latter through the end of the day). A UTC value outside the range ofDateTime, asUNTIL=99991231read inAmerica/New_York, is written as99991231T235959Z(or00010101T000000Z).A
Localvalue is converted with the offset of the local time zone. A local time skipped by a forward transition of that time zone is read with the offset in effect before the transition, as RFC 5545 section 3.3.5 reads a floating time in a gap and as a floatingUNTILis converted.TEXTvalues drop the control characters other than a horizontal tab; a line feed is escaped as\nand a carriage return is dropped.InternetCalendar.Versionis written as is; one containing a control character cannot be written, andToIcsthrows anInvalidOperationExceptionbefore writing anything. Anullevent is skipped.A time zone identifier containing
:,;or,, such as(UTC+01:00) Amsterdam, Berlin, is quoted in theTZIDparameter and escaped in theVTIMEZONETZIDproperty. An identifier containing a"or a control character cannot be written, andToIcsthrows anInvalidOperationExceptionbefore writing anything.AdditionalPropertiesvalues are escaped asTEXT, unless the value type of the property is notTEXT(URL,SOURCE,GEO,EXDATE,REQUEST-STATUS...), whose value is written as is, its control characters dropped.RawPropertiesare written verbatim, with their parameter values encoded as above; anInternetCalendarPropertyvalidates its name, parameters and value when it is created, so it cannot inject a line:@event.RawProperties.Add(new InternetCalendarProperty("EXDATE", [new("TZID", "Europe/Paris")], "20240104T100000")); @event.RawProperties.Add(new InternetCalendarProperty("GEO", "37.386013;-122.082932"));A property of either collection named after one the writer emits itself —
BEGIN,END,VERSIONandPRODIDfor the calendar;UID,STATUS,ORGANIZER,ATTENDEE,CREATED,LAST-MODIFIED,DTSTAMP,DTSTART,DTEND,RRULE,SUMMARYandDESCRIPTIONas well for an event, andDURATIONwhenEvent.Endis set — is not written. AnRRULEofEvent.RawPropertiesis written, after the one ofEvent.RecurrenceRule.RFC 5545 section 3.2.19 requires a
VTIMEZONEfor everyTZIDparameter, so one is also written for theTZIDof any other written property, such asEXDATE;TZID=Europe/Paris:20240104T100000inEvent.RawProperties. ATZIDnaming aVTIMEZONEof the calendar the model was parsed from keeps that component as written; any other one is resolved as the parser resolves it, and a component is written for it, named after theTZID, when it resolves.
Writing
InternetCalendar writes events in the iCalendar format. Setting Event.TimeZone writes the start and end
as DTSTART;TZID=/DTEND;TZID= and emits a matching VTIMEZONE component:
var calendar = new InternetCalendar();
calendar.Events.Add(new Event
{
Start = new DateTime(2024, 01, 02, 08, 00, 00),
End = new DateTime(2024, 01, 02, 09, 00, 00),
TimeZone = TimeZoneInfo.FindSystemTimeZoneById("America/New_York"),
});
var ics = calendar.ToIcs();
BEGIN:VTIMEZONE
TZID:America/New_York
BEGIN:DAYLIGHT
DTSTART:20070311T020000
TZOFFSETFROM:-0500
TZOFFSETTO:-0400
RRULE:FREQ=YEARLY;BYMONTH=3;BYDAY=2SU
END:DAYLIGHT
BEGIN:STANDARD
DTSTART:20071104T020000
TZOFFSETFROM:-0400
TZOFFSETTO:-0500
RRULE:FREQ=YEARLY;BYMONTH=11;BYDAY=1SU
END:STANDARD
END:VTIMEZONE
...
DTSTART;TZID=America/New_York:20240102T080000
A Start or End whose Kind is Unspecified is taken as a wall-clock reading in that time zone; a Utc
or Local value denotes an instant and is converted to it. The component describes the adjustment rule in
effect for the events, expanded to an open-ended yearly recurrence.
Cron expressions
The library also provides CronExpression to parse and evaluate cron schedules.
var cron = CronExpression.Parse("0 */15 * * * *");
var occurrences = cron.GetNextOccurrences(DateTime.Now).Take(10).ToArray();
Supported formats
- 5 fields:
minute hour day-of-month month day-of-week - 6 fields:
second minute hour day-of-month month day-of-week - 7 fields:
second minute hour day-of-month month day-of-week year
Fields are separated by spaces or tabs, and only spaces and tabs are allowed before the first field and after the last one:
other whitespace, such as a line feed or a non-breaking space, makes the expression invalid. When using the 5-field format,
seconds are implicitly set to 0.
The 6-field format always starts with the seconds, and has no year field. All formats number the days of the week as Unix
cron does (0 or 7 = Sunday, 1 = Monday), not as Quartz does (1 = Sunday).
Field ranges
- second:
0-59 - minute:
0-59 - hour:
0-23 - day-of-month:
1-31 - month:
1-12orJAN-DEC - day-of-week:
0-7orSUN-SAT(0and7= Sunday, so1-7means every day) - year (optional):
1970-9999.*,?or no year field matches every year, including the years before 1970, while*/nstarts at 1970 and goes up to 9999.
Operators and special values
For all fields:
*or?: any valuea,b,c: list. Each item can be a value, a range, a step,*or*/n(for example*/15,7). A*item means any value.?is only valid as the whole field.a-b: range*/n: step from field minimuma-b/n: stepped rangea/n: step starting ataup to the field maximum, which is7in the day-of-week field, so1/2is1-7/2and includes Sunday
A step does not wrap around the end of the field, so a step wider than the field is valid and only selects its first value:
*/90 in the minute field is the same as 0, and 5/90 is the same as 5.
A range whose start is greater than its end wraps around the end of the field, except in the year field where it is invalid:
22-2in the hour field means22,23,0,1,222-2/2in the hour field means22,0,2FRI-MONin the day-of-week field means5,6,0,1NOV-FEBin the month field means11,12,1,2
Day-of-month field additionally supports:
L: last day of monthL-n: nth day before end of month (for exampleL-2,nin0-30)LW: last weekday of monthnW: nearest weekday to dayn(nin1-31), without leaving the month
Day-of-week field additionally supports:
nL: last occurrence of weekdaynin monthn#m: m-th occurrence of weekdaynin month (min1-5)
Predefined schedules
@yearly/@annually@monthly@weekly@daily/@midnight@hourly
Notes
Parsing is case-insensitive for month/day names, special values (
L,W), and predefined schedules. Only ASCII letters are folded, so a look-alike character such asſ(long s) orı(dotless i) is not accepted, whatever the target framework.Occurrences are whole seconds. A start date with a fractional second starts at the next whole second.
day-of-monthandday-of-weekare combined with AND semantics. A date must satisfy both fields to match. This differs from Vixie cron, which matches a date satisfying either field when both are restricted:0 0 1 * 1only matches a Monday that is the first day of a month, not every first day of a month and every Monday.GetNextOccurrences(startDate)andGetNextOccurrence(startDate)includestartDateitself when it matches. To get the occurrence after a previous one, start one second after it:var next = cron.GetNextOccurrence(DateTime.UtcNow); // cron.GetNextOccurrence(next.Value) would return next again var following = cron.GetNextOccurrence(next.Value.AddSeconds(1));The
DateTimeoverloads work on wall-clock values and ignore daylight saving time, even when theKindof the start date isLocal: an occurrence can fall in a skipped hour, or be returned once for an hour that is repeated. Use the overloads taking aTimeZoneInfo(or a time zone identifier) to get occurrences that account for the transitions of a time zone.ToString()returns the text of the expression, without its leading and trailing spaces and tabs.Two expressions are equal (
Equals,==) when their fields select the same values, whatever their text:*/15 * * * *is equal to0,15,30,45 * * * *, and@dailyto0 0 * * *. Expressions written with different special values, such as0 0 29 2 *and0 0 L 2 *, are not equal, even when they match the same dates. ACronExpressionholds no time zone.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. net11.0 is compatible. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- System.Memory (>= 4.6.3)
-
net10.0
- No dependencies.
-
net11.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Meziantou.Framework.Scheduling:
| Package | Downloads |
|---|---|
|
Immediate.Jobs
A reflection-free background job scheduler for .NET using source generation. |
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated |
|---|---|---|
| 4.1.3 | 140 | 9/20/2026 |
| 4.1.2 | 212 | 9/15/2026 |
| 4.1.1 | 373 | 9/6/2026 |
| 4.1.0 | 117 | 9/4/2026 |
| 4.0.5 | 116 | 9/3/2026 |
| 4.0.4 | 93 | 9/3/2026 |
| 4.0.3 | 144 | 8/30/2026 |
| 4.0.2 | 251 | 8/16/2026 |
| 4.0.1 | 594 | 7/8/2026 |
| 4.0.0 | 161 | 7/5/2026 |
| 3.0.2 | 300 | 6/13/2026 |
| 3.0.1 | 296 | 5/23/2026 |
| 3.0.0 | 156 | 5/17/2026 |
| 2.0.12 | 191 | 5/11/2026 |
| 2.0.11 | 364 | 3/22/2026 |
| 2.0.10 | 439 | 1/16/2026 |
| 2.0.9 | 383 | 11/2/2025 |
| 2.0.8 | 193 | 10/19/2025 |
| 2.0.7 | 287 | 9/3/2025 |
| 2.0.6 | 315 | 3/1/2025 |