Hi There

We can get calendar's list, but C# library dose not have calendar
class.
So, I made the class which supported calendar's list feed.

CalendarEntry  (like a EventEntry)
CalendarQuery  (like a EventQuery)
CalendarFeed   (like a EventFeed)
and extended CalendarService.

[USAGE]
CalendarQuery query = new CalendarQuery("http://www.google.com/
calendar/feeds/default");
CalendarFeed feed = service.Query(query);
foreach (CalendarEntry entry in feed.Entries)
{
    // entry.Title.Text
    // entry.AccessLevel
    // entry.Color
}


I uploaded the source code to this group's page.
(http://groups.google.com/group/google-calendar-help-dataapi)
[File] - CalendarClasses.cs

You may use it freely :)


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