Monitor urls using c#

3.5k views Asked by At

I am developing asp.net website for url monitoring. I looked around for open source tools and none of them provide restful APIs so that they can be called from my application. Are there any open source packages that I can directly use?

Thanks.

2

There are 2 answers

0
user1276005 On
0
bateloche On

You want to check the content of the URLs right?

No service will have a restful API since they will be local packages.

If you want to get the website/service content and check sometime in it, try .Net Frameworks HttpClient or System.Net.WebRequest.

For easier parsing you can use HtmlAgilityPack.