Ejemplo n.º 1
0
 public void ExecuteGame(FacebookObjectCollection <Album> i_Albums)
 {
     foreach (Album album in i_Albums)
     {
         if (!string.IsNullOrEmpty(album.Location) && !string.IsNullOrEmpty(album.PictureAlbumURL))
         { // album has picture and location
             AlbumsGameList.Add(album);
         }
     }
 }
Ejemplo n.º 2
0
 public void ExecuteGame(FacebookObjectCollection <Album> i_Albums)
 {
     foreach (Album album in i_Albums)
     {
         if ((album.Count > 0) && !string.IsNullOrEmpty(album.PictureAlbumURL))
         { // album has picture and positive num of pictures
             AlbumsGameList.Add(album);
         }
     }
 }