New test.
[mono.git] / mcs / class / System.XML / System.Xml / XmlDocumentFragment.cs
index 93da714813227102018ef36d714939cc6ca768be..7451e4f249d908260c5822b43a75325887160114 100644 (file)
@@ -35,8 +35,9 @@ using System.Xml.XPath;
 
 namespace System.Xml
 {
-       public class XmlDocumentFragment : XmlNode
+       public class XmlDocumentFragment : XmlNode, IHasXmlChildNode
        {
+               XmlLinkedNode lastLinkedChild;
 
                #region Constructor
 
@@ -49,6 +50,11 @@ namespace System.Xml
 
                #region Properties
 
+               XmlLinkedNode IHasXmlChildNode.LastLinkedChild {
+                       get { return lastLinkedChild; }
+                       set { lastLinkedChild = value; }
+               }
+
                public override string InnerXml {
                        set {
                                // Copied from XmlElement.InnerXml (in the meantime;-))