I'm working on C# app to get html file from current IE tab by EnumWindows. Now I got HTMLDocument and can parse it to html file from outerHTML ({HTMLDocument}.documentElement.outerHTML) by HtmlAgilityPack, but my output html file has not doctype.
I see that HTMLDocument has doctype property, how can I parse it to string as same as tag in html file
I got it by casting
htmlDocument.doctype
as dynamic object. Another, you can get other tags which are out of<html>
tag by looping on(dynamic)htmlDocument.childNodes
list