Interface ITreeWalker
.NET interface skeleton to be manually developed following https://docs.oracle.com/javase/8/docs/api/org/w3c/dom/traversal/TreeWalker.html
public interface ITreeWalker
Properties
CurrentNode
https://docs.oracle.com/javase/8/docs/api/org/w3c/dom/traversal/TreeWalker.html#getCurrentNode-- https://docs.oracle.com/javase/8/docs/api/org/w3c/dom/traversal/TreeWalker.html#setCurrentNode-org.w3c.dom.Node-
Node CurrentNode { get; set; }
Property Value
ExpandEntityReferences
bool ExpandEntityReferences { get; }
Property Value
Filter
NodeFilter Filter { get; }
Property Value
Root
Node Root { get; }
Property Value
WhatToShow
int WhatToShow { get; }
Property Value
Methods
FirstChild()
Node FirstChild()
Returns
LastChild()
Node LastChild()
Returns
NextNode()
Node NextNode()
Returns
NextSibling()
Node NextSibling()
Returns
ParentNode()
Node ParentNode()
Returns
PreviousNode()
Node PreviousNode()
Returns
PreviousSibling()
Node PreviousSibling()