BookInfo.BookUrl.ConstructBookReviewsUrl C# (CSharp) Метод

ConstructBookReviewsUrl() публичный Метод

public ConstructBookReviewsUrl ( string isbn, int startIndex, int maxResults ) : string
isbn string
startIndex int
maxResults int
Результат string
        public string ConstructBookReviewsUrl(string isbn, int startIndex, int maxResults)
        {
            string bookReviewsUrl = isbnBookBaseUrl;
            bookReviewsUrl += isbn;
            bookReviewsUrl += "/reviews?";
            bookReviewsUrl += "&start-index=" + startIndex.ToString();
            bookReviewsUrl += "&max-results=" + maxResults.ToString();
            bookReviewsUrl += "&apikey=" + apiKey;
            return bookReviewsUrl;
        }