Пример #1
0
        public NodeIterator element()
        {
            StringBuilder decodedContent = new StringBuilder();

            decodedContent.Append(_stringContent);
            return(new NodeIterator(new List <Node> {
                StringNode.createStringNode(decodedContent, 0, 0, true)
            }));
        }
Пример #2
0
 public Node find(NodeReader reader, string input, string position, bool balance_quotes)
 {
     return(StringNode.createStringNode(textBuffer, textBegin, textEnd, reader.getParser().shouldDecodeNodes()));
 }
Пример #3
0
 public INode Find(NodeReader reader, String input, Int32 position, Boolean balanceQuotes)
 {
     return(StringNode.CreateStringNode(this._textBuffer, this._textBegin, this._textEnd, reader.GetParser().ShouldDecodeNodes()));
 }
 public DecodingNode(StringNode stringNode)
 {
     delegateNode = stringNode;
 }