Hi, I'm trying and testing around with exceptions for recurring events. I've got no problems inserting a recurring event, but adding an exception to it. Google'ed a lot but didn't find any snippets to see how an exception will be added in c#...
I thoughts go in this direction: "eventResult" is the original EventEntry (Master) String eventOrigID = Regex.Replace(eventResult.Id.Uri.Content, ".*full/", ""); EventEntry eventEx = new EventEntry(); OriginalEvent eventOrig = new OriginalEvent(); eventEx = CreateGoogleCalEntry(eventEx); // Adding informations to this object like start, end, subject... eventOrig.IdOriginal = eventOrigID; eventEx.OriginalEvent = eventOrig; // Now adding eventEx to the calendar... Problem is that the exception does not appear... I hope someone can help! Thanks Sascha -- You received this message because you are subscribed to the Google Groups "Google Calendar Data API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-calendar-help-dataapi?hl=en.
