Hi, stevescotthome
To get events for a specific calendar you have to query eventfeed for
a specific calendar's uri.
Here is a code sample to get a list of user's calendars and to read
events for each one:

CalendarQuery calendarQuery = new CalendarQuery("http://www.google.com/
calendar/feeds/default/allcalendars/full");
CalendarFeed resultFeed = service.Query(calendarQuery);
foreach (CalendarEntry calendarEntry in resultFeed.Entries)
{
       string calendarUri = calendarEntry.Content.AbsoluteUri;
       EventFeed eventFeed = service.Query(new EventQuery
(calendarUri));
       foreach (EventEntry eventEntry in eventFeed.Entries)
       {
              // some event handling activities
       }
}

On 14 авг, 22:05, stevescotthome <[email protected]> wrote:
> We've got a master calendar user who has access to all of our
> calendars.  I've queried the API to get a list of all those, and what
> I'm trying to do is then query only specific calendars off of
> those...so the user selects a couple with checkboxes, then it gives
> only those feeds
>
> How can I get this done?  Some sort of query?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to