Class XmlAgilityDocument
- Namespace
- SunamoHtml
- Assembly
- SunamoHtml.dll
Represents an XML document using HtmlAgilityPack for manipulation.
public class XmlAgilityDocument
- Inheritance
-
XmlAgilityDocument
- Inherited Members
- Extension Methods
Properties
HtmlDocument
Gets or sets the HTML document instance.
public HtmlDocument HtmlDocument { get; set; }
Property Value
Path
Gets or sets the file path of the document.
public string Path { get; set; }
Property Value
Methods
Load(string)
Loads an XML/HTML document from the specified file path.
public Task Load(string filePath)
Parameters
filePathstringThe path to the file to load.
Returns
Save()
Saves the current document to the file path.
public Task Save()