Beispiel #1
0
  public DOMNode AppendChild(DOMNode node) {

    node._ParentNode = this;
    node._OwnerDocument = this._OwnerDocument;
    this._ChildNodes.AppendNode(node);

    return node;
  }