Maybe the answer is simple, but I have not found any hint pointing in the right direction:

            EventQuery calQuery = new EventQuery(_calendarFeedString);
            calQuery.StartTime = sDate.Date;
            calQuery.EndTime = sDate.AddDays(1); //(EndTime is exclusive calling Google Feeds)
            // Google EventQuery together with StartTime and EndTime returns also Events overlapping! 

            EventFeed myEvents = _calendarService.Query(calQuery);

This code should return events only of specified date (sDate). However as per design Google Calendar returns also events overlapping into this date. So if I have an event starting just before midnight the day before and ending the next day it will be returned in this query, as it is overlapping. How can I avoid/prevent overlapping events in such a query? I have not found any hint in Google API nor in other sources.

link|improve this question

64% accept rate
feedback

1 Answer

I don't know that you will be able to, you could parse out the results that have earlier start times or later end times then you desire.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.