Recurrence(String) Constructor
Construct a recurrence from a string in vCalendar 1.0 basic grammar format or iCalendar 2.0
RRULE/EXRULE format.
Namespace: EWSoftware.PDIAssembly: EWSoftware.PDI (in EWSoftware.PDI.dll) Version: 2025.1.9.0
public Recurrence(
string recur
)
Public Sub New (
recur As String
)
public:
Recurrence(
String^ recur
)
new :
recur : string -> Recurrence
Parameters
- recur String
- The recurrence parameters in vCalendar 1.0 basic grammar format or iCalendar 2.0
RRULE/EXRULE format.
The RRULE or EXRULE property name is ignored if present
Recurrence r = new Recurrence("FREQ=DAILY;COUNT=30;INTERVAL=5");
r.StartDateTime = DateTime.Today;
DateTimeCollection dc = r.AllInstances();
Dim r As New Recurrence("FREQ=DAILY;COUNT=30;INTERVAL=5");
r.StartDateTime = DateTime.Today;
Dim dc As DateTimeCollection = r.AllInstances();
No code example is currently available or this language may not be supported.
No code example is currently available or this language may not be supported.