Using the code below I am only able to get the Title, When and Where
portions of the event. How can I retrieve the description?
// Return the feed.
EventFeed myEventFeed = myCalendarService.Query(myEventQuery);
foreach (AtomEntry myAtomEntry in myEventFeed.Entries)
{
string upcomingEvents = myAtomEntry.Summary.Text;
upcomingEvents = upcomingEvents + myAtomEntry.Title.Text;
//Still need to get the description.
lblUpcomingEvents.Text = upcomingEvents;
--
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://code.google.com/apis/calendar/community/forum.html