from the top of my head (travelling, can not compile or test the code i am giving you)...
CalendarService s= new CalendarService(your credentials).... CalendarQuery q = new CalendarQuery(that uri you have below)... CalendarFeed f = s.Query(q); foreach (CalendarEntry e in f) ... do your thing That should do it. Frank Mantek Google On Wed, May 7, 2008 at 10:28 PM, grodey <[EMAIL PROTECTED]> wrote: > > I want to programmatically get a list of all calendarIDs that a user > owns. I know I need to reference "http://www.google.com/calendar/feeds/ > default/owncalendars/full<http://www.google.com/calendar/feeds/default/owncalendars/full>" > but can't find the right api call in C# to > do this. Please help a beginning programmer! :-) > > > --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
