Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 805 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 805 Bytes

WebCrawler

Build Status NuGet version

Just a simple web crawler which return crawled links as IObservable using reactive extension, async await and polly.

dotnet add package MisterHex.WebCrawling --version 2.0.3

Usage

Crawler crawler = new Crawler();
IObservable<Uri> observable = crawler.Crawl(new Uri("https://dotnet.microsoft.com"));
observable.Subscribe(onNext: Console.WriteLine, onCompleted: () => Console.WriteLine("Crawling completed"));