Esempio n. 1
0
        private bool CheckBlackList(string url)
        {
            foreach (string e in CrawlerOptions.ReturnBlackList())
            {
                if (url.EndsWith(value: e))
                {
                    return(false);
                }
            }

            return(true);
        }