Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WatiN を使用して、ページ上のすべてのリンクを取得することが可能です。HTMLアジリティパックではかなり簡単だと思いましたが、 WatiNを使用する必要があります。
Browser.Linksメソッドを使用できます
Browser.Links
using(Browser browser = new IE("http://www.sp4ce.net")) { foreach(Link link in browser.Links) { Console.WriteLine(link); } }