I think I found a workaround for this:

query.NumberToReceive = 25; // default
query.StartIndex = 0; // default

EventFeed eventFeed = service.Query(query);

while (eventFeed != null && eventFeed.Entries.Count > 0)
{
    foreach (EventEntry entry in eventFeed.Entries)
    {
        // do something
    }
    query.StartIndex += query.NumberToRetrieve;
    eventFeed = service.Query(query);

}

I believe this will read the calendar successively like the
NextChunk-method.


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

Reply via email to