Closed GoogleCodeExporter closed 8 years ago
Delete AtomEntry without change its properties is OK!
Original comment by G.Talk.G
on 30 Nov 2009 at 5:35
nAre you writing this code:
Entry e = ... some way to get the entry
e.Title.Text = "some text";
e.Update();
e.Delete() -> this fails?
If so, that is normal. e.Update() returns to you a new entry, so you need to:
Entry updatedEntry = e.Update();
updatedEntry.Delete();
Frank
Original comment by fman...@gmail.com
on 1 Dec 2009 at 11:15
Thank you so much fmantek!
As you mentioned above, I've solved the problem. I didn't realize Update()
return a
new updated entry object, when I use PicasaService.UpdateAsync() method.
Thanks for your quick response again.
Original comment by G.Talk.G
on 1 Dec 2009 at 1:18
Glad it is working for you.
Frank Mantek
Original comment by fman...@gmail.com
on 1 Dec 2009 at 1:28
Original issue reported on code.google.com by
G.Talk.G
on 30 Nov 2009 at 5:33