示例#1
0
 public Album CreateAlbum(string title, int category_id, bool is_public)
 {
     try {
         return(SmugMugProxy.CreateAlbum(title, category_id, credentials.SessionID, is_public));
     }
     catch (Exception ex) {
         throw new SmugMugException("Could not create album", ex.InnerException);
     }
 }