18 lines
405 B
C#
18 lines
405 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace Rokojori
|
|
{
|
|
public class HtmlTextNode:HtmlNode
|
|
{
|
|
public HtmlTextNode( HtmlDocument document, string textContent ):base( document, HtmlNode.NodeType.Text )
|
|
{
|
|
_textContent = textContent;
|
|
}
|
|
|
|
string _textContent;
|
|
|
|
public override string nodeValue => _textContent;
|
|
}
|
|
} |