I want to generate EWS Microsoft.Exchange.WebServices.Data.Recurrence object based on RecurrenceData column of SharePoint List.
SharePoint stores recurring information in Xml format in RecurrenceData column whereas EWS uses own Recurrence object to hold recurring information:
?item["RecurrenceData"]
"<recurrence><rule><firstDayOfWeek>su</firstDayOfWeek><repeat><weekly tu=\"TRUE\" weekFrequency=\"1\" /></repeat><repeatForever>FALSE</repeatForever></rule></recurrence>"
I am wondering if someone has any code snippet or pointer to any article which provide XML parsing of RecurrenceData and create required Recurrence object. Look like it will require some brute force method to parse RecurrenceData.