BookInfo.BookUrl.ConstructBookSearchUrl C# (CSharp) Method

ConstructBookSearchUrl() public method

public ConstructBookSearchUrl ( string searchKey, int startIndex, int maxResults ) : string
searchKey string
startIndex int
maxResults int
return string
        public string ConstructBookSearchUrl(string searchKey, int startIndex, int maxResults)
        {
            string searchUrl = searchBaseUrl;
            searchUrl += "?";
            searchUrl += "q=" + searchKey;
            searchUrl += "&start-index=" + startIndex.ToString();
            searchUrl += "&max-results=" + maxResults.ToString();
            searchUrl += "&apikey=" + apiKey;
            return searchUrl;
        }