1 override of LastChild
System.Data.Common (1)
System\Xml\XmlBoundElement.cs (1)
60public override XmlNode? LastChild
13 references to LastChild
Microsoft.Build (1)
Evaluation\Preprocessor.cs (1)
208XmlElement xmlElement = (XmlElement)documentElement.InsertAfter(documentElement.OwnerDocument.ImportNode(import.ImportingElement.XmlElement, false), documentElement.LastChild);
System.Data.Common (2)
System\Xml\XmlBoundElement.cs (1)
67return base.LastChild;
System\Xml\XmlDataDocument.cs (1)
515Debug.Assert(docElem.LastChild == docElem.FirstChild);
System.Private.Xml (10)
System\Xml\Dom\DocumentXPathNavigator.cs (2)
1998sibling = sibling.LastChild; 2041sibling = sibling.LastChild;
System\Xml\Dom\XmlDocument.cs (3)
570refChild ??= LastChild; 883n = n.LastChild!; 1777if (!CanInsertAfter(newChild, LastChild))
System\Xml\Dom\XmlElement.cs (1)
492while (n != root && n == n.ParentNode!.LastChild)
System\Xml\Dom\XmlElementList.cs (2)
143if (retNode.LastChild == null) 145retNode = retNode.LastChild;
System\Xml\Dom\XmlLoader.cs (1)
373if (eref.LastChild == null)
System\Xml\Dom\XmlNode.cs (1)
615if (!CanInsertAfter(newChild, LastChild))