Ejemplo n.º 1
0
        public List <string> CollectSearchQueries()
        {
            var result = new List <string>();

            SearchBaseUrls.ToList().ForEach(x => SearchTerms.ForEach(k => result.Add(String.Format(Searcher.SearcherConfiguration.SearchQueryFormatExpression, x, System.Web.HttpUtility.UrlEncode(k)))));
            return(result);
        }
        public List <string> CollectSearchQueries()
        {
            var result = new List <string>();

            SearchBaseUrls.ToList().ForEach(x => SearchTerms.ForEach(k => result.Add(String.Format("{0}/jobs?searchTerm={1}", x, System.Web.HttpUtility.UrlEncode(k)))));
            return(result);
        }