public ResponseModel GetSearchResult()
        {
            BingResponseModel result = GetSearchResult(GetUrl(language)).Result;

            return(new ResponseModel {
                Engine = "BING",
                Name = language,
                Total = result.webPages.totalEstimatedMatches
            });
        }
 private long GetTotalResults(BingResponseModel result) => result.webPages.totalEstimatedMatches;