コード例 #1
0
 /// <summary>
 /// This method does not seem to currently work. (works fine -- sergei)
 /// </summary>
 /// <param name="albumID">The albumID to retreive the AlbumInfo.</param>
 /// <returns></returns>
 public int[] GetImages(int albumID)
 {
     try
     {
         int[] images = proxy.GetImages(this.credentials.SessionID, albumID);
         return(images);
     }
     catch (Exception ex)
     {
         throw new SmugMugException("Could not get images", ex.InnerException);
     }
 }