Skip to content

Commit 28cdf6f

Browse files
committed
Merge pull request #383 from mattjphillips/add_import_node
Add ImportNode() to XmlDocument.
2 parents 35444d0 + 5e900e7 commit 28cdf6f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Libraries/Web/Xml/XmlDocument.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,5 +59,9 @@ public XmlNode CreateProcessingInstruction(string target, string data) {
5959
public XmlText CreateTextNode(string text) {
6060
return null;
6161
}
62+
63+
public XmlNode ImportNode(XmlNode externalNode, bool deep) {
64+
return null;
65+
}
6266
}
6367
}

0 commit comments

Comments
 (0)