Hello,
I'm planning to use WebScheduleGenericDataProvider, and I'm wondering on how to 'read' RecurrencePattern string.
RecurrencePattern is a semi-colon separated string, which contains all the information needed by Recurrence data.
Below is some of the examples of RecurrencePattern:
0;28800;0;0;5;D;0;70;599266080000000000;
0;28800;9;0;1;M;0;2918247;599266080000000000;
0;28800;17;2;1;Y;0;3287;599266080000000000;
I'm able to figure out almost all properties except for 28800.
Has anyone ever decoded RecurrencePattern?
I am working with the WebSchedule and also the WPF version of your schedule. The Recurrence field that is getting created from the WPF version look very different than the one you described here. How can I use this to display the recurring appointments on the web?
Here is a sample of the data.
FREQ=MONTHLY;INTERVAL=1;WKST=MO;BYDAY=2WE
FREQ=WEEKLY;INTERVAL=6;WKST=MO;BYDAY=FR
Thanks.
thanks for the quick reply~!! :)
Hi,
DayOfWeekMaskUtc;UtcOffset;DayOfMonth;MonthOfYear;PeriodMultiple;Period;EditType;EndAfterDays;LastReminderDateUtcTicks;
That's the format. In general you shouldn't worry about encoding and decoding it. This happens automatically inside the provider, once you start adding / modifying/removing appointments.
Thanks,
Angel