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