Table of Contents

Class HtmlTextNode

Namespace
HtmlAgilityPack
Assembly
HtmlAgilityPack.dll

Represents an HTML text node.

public class HtmlTextNode : HtmlNode, IXPathNavigable
Inheritance
HtmlTextNode
Implements
IXPathNavigable
Inherited Members

Properties

InnerHtml

Gets or Sets the HTML between the start and end tags of the object. In the case of a text node, it is equals to OuterHtml.

public override string InnerHtml { get; set; }

Property Value

string

OuterHtml

Gets or Sets the object and its content in HTML.

public override string OuterHtml { get; }

Property Value

string

Text

Gets or Sets the text of the node.

public string Text { get; set; }

Property Value

string