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
OuterHtml
Gets or Sets the object and its content in HTML.
public override string OuterHtml { get; }
Property Value
Text
Gets or Sets the text of the node.
public string Text { get; set; }