public List <BookmarkedMovie> BookmarkedMovies(bool withRtRatings) { this.CheckLoggedIn(); try { var req = YifyAPI.GetMovieBookmarksURI(this.userKey, withRtRatings); var res = YifyAPI.SendGetRequest(req); return(_parser.ParseGetBookmarkedMoviesResponse(res)); } catch (Exception ex) { throw new YifyException("An error occurred. See inner exception for more details", ex); } }