Table of Contents

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

HtmlDocument

Path

Gets or sets the file path of the document.

public string Path { get; set; }

Property Value

string

Methods

Load(string)

Loads an XML/HTML document from the specified file path.

public Task Load(string filePath)

Parameters

filePath string

The path to the file to load.

Returns

Task

Save()

Saves the current document to the file path.

public Task Save()

Returns

Task