すべてのコンテンツ(画像、スクリプトなど)を含むHTMLページをファイルのリストまたは単一のWebアーカイブとしてダウンロードできますか?これにより、マークアップのみが得られます:
using (WebClient client = new WebClient())
{
client.DownloadFile("http://www.youtube.com", @"D:\anyfile.html");
//or
string htmlCode = client.DownloadString("http://www.yotube.com");
// save htmlcode ...
}
APIはありますか?