Hi, thank you for the quick answers.
My problem i quite simple, I'm using this code to retrieve my events:
FeedQuery query = new FeedQuery();
CalendarService service = new CalendarService("my feed");
query.Uri = new
Uri("http://www.google.com/calendar/feeds/[EMAIL PROTECTED]/public/full");
// ?start-min=2007-01-01&start-max=2008-01-01");
EventFeed calFeed = service.Query(query);
foreach (EventEntry entry in calFeed.Entries)
foreach (When w in entry.Times)
// do stuff
I have checked the xml from the server, and the content seems to be
correct. There are the several gd:when entries for the recurring
events, as there should be. However when I run the code above, there is
only one entry in the Times collection for my recurring events, when
there should be about 40.
Am I doing something wrong here?
Regards,
bbc
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---