Hi Austin, I tried that with a new calendar with just one entry.
I get the uri of http://www.google.com/calendar/feeds/default/private/full/cklcqroclleorhgee7il818q78 and then pass this into your code but I get nothing back. Any ideas? Pete On 5 Mar, 18:30, "Austin (Google)" <[EMAIL PROTECTED]> wrote: > Hi, > > This is how you retrieve a single entry with its ID - > > public void retrieveSingleEvent(entryURI) { > > EventQuery query = new EventQuery(); > query.Uri = new Uri(entryURI); > > EventFeed feed = calendarService.Query(query); > if (feed.Entries.Count > 0) > { > Console.WriteLine(feed.Entries[0].Title.Text); > } > } > > Hope it helps, > Austin > > > > On Wed, Mar 5, 2008 at 2:56 AM, infopete <[EMAIL PROTECTED]> wrote: > > > Hi, > > > I've populated a calendar with events from my Lotus Notes calendar. I > > keep a record of entry.Id.AbsoluteUri so that I can get the entry back > > to delete or amend it. > > > How do I get a single entry using dot net from the AbsoluteURi or is > > there a better way? > > > Pete- Hide quoted text - > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
