phungthaihoa / google-gdata

Automatically exported from code.google.com/p/google-gdata
0 stars 0 forks source link

Query returns deleted and modified recurring #626

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. I create a recurring event every Thursday for 10 days (from the browser)
2. Then I query the calendar and get all 10 events (From my Console)
3. Then I modified one of them (Browser)
4. Then I query the calendar again and see that the one event is changed 
(Console)
5. Then I delete the modified event (Browser)
6. Then I query the calendar again and still I get the modified/deleted event

Please provide any additional information below.
Im using this code
uristring = "https://www.google.com/calendar/feeds/default/private/full";

// Create the query object:
EventQuery query = new EventQuery();
var uri = uristring;
if (string.IsNullOrEmpty(uri))
    return null;

query.Uri = new Uri(uri);

// Tell the service to query:
EventFeed calFeed = service.Query(query);
foreach (var entry in calFeed.Entries.Cast<EventEntry>().ToList())
{
    Console.WriteLine(entry.Title.Text);
}

Im using version v2.0.50727 of the API

Original issue reported on code.google.com by wb18...@gmail.com on 21 Sep 2012 at 9:22

GoogleCodeExporter commented 8 years ago

Original comment by ccherub...@google.com on 21 Sep 2012 at 9:29