Пример #1
0
        static void Main(string[] args)
        {
            var spider = new Spider();

            spider.Found += (_, req, resp) => Console.WriteLine(req.FullUrl);
            spider.AddScope(@"github");
            spider.Add("https://github.com/");
            spider.Go();
        }