Click here to Skip to main content
15,905,238 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi..

I need to select a particular calender from the list of calenders by name.How it is possible. I know the coding for select all calenders .But i need a particular calender based on name...can anyone help me.

C#
 CalendarQuery query = new CalendarQuery();
        query.Uri = new Uri("https://www.google.com/calendar/feeds/default/owncalendars/full");
        CalendarFeed resultFeed = (CalendarFeed)service.Query(query);
foreach (CalendarEntry entry in resultFeed.Entries)
{
    Console.WriteLine("Selected calendar: " + entry.Title.Text + "\n");
}
Posted
Updated 11-Jul-12 18:30pm
v4

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900