I started working on v2 support for the .NET client. A first version  
is checked in that changes some of the fundamentals on how you access  
your data.

Check out this code snippet:

                     RequestSettings settings = new  
RequestSettings("GoogleSpreadsheetsSample", loginDialog.User,  
loginDialog.Pwd);
                     settings.AutoPaging = true;
                     PicasaRequest r = new PicasaRequest(settings);

                     Feed<Photo> f = r.GetPhotos();
                     this.listView.Clear();

                     foreach (Photo p in f.Entries)
                     {
                         ListViewItem item = new ListViewItem(p.Title);
                         item.Tag = p;
                         this.listView.Items.Add(item);
                     }
                     this.listView.Update();


This is the same "generics" access system that i introduced for other  
services. Your old code will still work fine, but i really like to  
invite you to checkout the new Google.Picasa namespace and it's  
elements. It will make common operations a lot easier.

All the so far not obvious features of the AlbumAccessor and other  
classes have been moved into Google.Picasa in the form of the Photo,  
Album etc subclasses.

Please, check it out and give me feedback, if you find bugs report  
them to the public issue tracker.

Regards

Frank Mantek
Google

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Picasa Web Albums 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-Picasa-Data-API?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to