Skip to content

Commit c4a03cf

Browse files
committed
Add ImportNode() to XmlDocument.
1 parent 2be30f9 commit c4a03cf

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Libraries/Web/Xml/XmlDocument.cs

+4
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)