Example #1
0
 public void AppendChild(MarkupNode markupNode)
 {
     this.Children.Add(markupNode);
     markupNode.Parent = this;
 }
Example #2
0
 protected virtual TextSource ConvertNodeToTextSource(MarkupNode rootNode)
 {
     return(new TextSource(this.VisitMarkupNode(rootNode).ToArray()));
 }