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

18 lines
424 B
C#

using System.Collections;
using System.Collections.Generic;
using System.Text.RegularExpressions;
namespace Rokojori
{
public class XMLCDataSectionNode:XMLNode
{
public XMLCDataSectionNode( XMLDocument document, string textContent ):base( document, XMLNode.NodeType.CDataSection )
{
_textContent = textContent;
}
string _textContent;
public override string nodeValue => _textContent;
}
}