Html Agility Pack RemoveAll
public void RemoveAll()
Removes all attributes in the list. RemoveAll method is a member of HtmlAgilityPack.HtmlAttributeCollection
Example
The following example removes all attributes in the list.
var htmlDoc = new HtmlDocument(); htmlDoc.LoadHtml(html); var h1Node = htmlDoc.DocumentNode.SelectSingleNode("//h1"); h1Node.Attributes.RemoveAll();
Click here to run this example.