2024-10-25 06:28:58 +00:00
|
|
|
using System.Collections;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
2026-05-22 12:25:02 +00:00
|
|
|
using Rokojori.Extensions;
|
2024-10-25 06:28:58 +00:00
|
|
|
namespace Rokojori
|
|
|
|
|
{
|
|
|
|
|
public class XMLProcessingInstructionNode:XMLNode
|
|
|
|
|
{
|
|
|
|
|
public XMLProcessingInstructionNode( XMLDocument document, string textContent ):base( document, XMLNode.NodeType.ProcessingInstruction )
|
|
|
|
|
{
|
|
|
|
|
_declaration = textContent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string _declaration;
|
|
|
|
|
|
|
|
|
|
public override string nodeValue => _declaration;
|
|
|
|
|
}
|
|
|
|
|
}
|