rj-action-library/Runtime/XML/Nodes/XMLCDataSectionNode.cs

18 lines
424 B
C#
Raw Normal View History

2024-07-25 05:40:31 +00:00
using System.Collections;
using System.Collections.Generic;
using System.Text.RegularExpressions;
namespace Rokojori
{
public class XMLCDataSectionNode:XMLNode
2024-07-25 05:40:31 +00:00
{
public XMLCDataSectionNode( XMLDocument document, string textContent ):base( document, XMLNode.NodeType.CDataSection )
2024-07-25 05:40:31 +00:00
{
_textContent = textContent;
}
string _textContent;
public override string nodeValue => _textContent;
}
}