1. Create calendar
2. Create a daily recurring event "Test"
3. Use the following code:
EventQuery myQuery = new EventQuery(feedUrl);
myQuery.StartTime = new DateTime(DateTime.Now.Year,
DateTime.Now.Month, DateTime.Now.Day);
EventFeed myResultsFeed = myService.Query(myQuery);
foreach (Google.GData.Calendar.EventEntry entry in
myResultsFeed.Entries)
{
foreach (When time in entry.Times)
{
DateTime start = time.StartTime;
foreach (Reminder reminder in entry.Reminders)
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---