HtmlAgilityPack a-t-il la possibilité de renvoyer le balisage HTML entier d'un objet HtmlDocument sous forme de chaîne?
Bien sûr, vous pouvez faire comme ça:
HtmlDocument doc = new HtmlDocument();
// call one of the doc.LoadXXX() functions
Console.WriteLine(doc.DocumentNode.OuterHtml);
OuterHtml contient le html entier.