I do assume you are using .NET...

an eventfeed has a collection of EventEntries. One way of accessing  
them would be:

                     foreach (EventEntry entry in calFeed.Entries)
                     {
                                print entry.Title....
                     }

                
Frank Mantek
Google


On Sep 12, 2007, at 10:58 AM, f1crazed wrote:

>
> Hello
>
> I am trying to convert a Event Feed that returns multiple events in to
> a "collection" of Event Entries.  This is what I have so far to get
> the Event Feed:
>
> authen(); // this function handles the authentication and initiates
> the Calendar Service
> EventQuery query = new EventQuery();
> query.Uri = new Uri("http://www.google.com/calendar/feeds/"; + strEmail
> + "/private/full");
> EventFeed results = myCS.Query(query);
>
> There are multiple events in the feed and I'm not sure how to extract
> them one by one and create a new EventEntry for each event contained
> in the EventFeed.
>
> Thanks in advance!
>
> ~JD
>
>
> >


--~--~---------~--~----~------------~-------~--~----~
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