I´m trying to retrieve information about recurring events from sharepoint 2010 using client object model. I have retrieved “Recurrencedata” and “fRecurrence” but i can not see these information in them.
I´m trying to retrieve information about recurring events from sharepoint 2010 using client object
Share
There are three key fields for the recurrence in sharepoint calendar lists. Two of them you already mentioned. “fRecurrence” is an boolean field which says item is recurring or not. “RecurrenceData” is the field which stores the all details about recurrence in xml format. A simple sample is
<recurrence><rule><firstDayOfWeek>su</firstDayOfWeek><repeat><daily dayFrequency="1" /></repeat><repeatForever>FALSE</repeatForever></rule></recurrence>Third one is the “EventType” field which stores info about list type(normal, recurring, recurrence exception etc.)
You can get detailed information about subject from here
To read entries from a list use:
To read relevant fields use