Base:
property
PreviousSibling
System.Xml.XmlNode.PreviousSibling
1 override of PreviousSibling
System.Data.Common (1)
System\Xml\XmlBoundElement.cs (1)
66public override XmlNode? PreviousSibling
14 references to PreviousSibling
Microsoft.Build (7)
Construction\ProjectElementContainer.cs (7)
530if (referenceSibling.XmlElement.PreviousSibling?.NodeType == XmlNodeType.Whitespace) 532var newWhitespaceNode = XmlDocument.CreateWhitespace(referenceSibling.XmlElement.PreviousSibling.Value); 546if (child.XmlElement.PreviousSibling?.NodeType == XmlNodeType.Whitespace) 548var newWhitespaceNode = XmlDocument.CreateWhitespace(child.XmlElement.PreviousSibling.Value); 580if (xmlElement.PreviousSibling?.NodeType != XmlNodeType.Whitespace) 585var leadingWhiteSpace = xmlElement.PreviousSibling.Value; 608var previousSibling = child.XmlElement.PreviousSibling;
Microsoft.Build.Tasks.Core (1)
ManifestUtil\TrustInfo.cs (1)
262XmlNode previousNode = inputRequestedExecutionLevel.PreviousSibling;
System.Data.Common (3)
System\Xml\XmlBoundElement.cs (3)
70XmlNode? prev = base.PreviousSibling; 77return base.PreviousSibling; 84internal XmlNode? SafePreviousSibling => base.PreviousSibling;
System.Private.Xml (3)
System\Xml\Dom\XmlNode.cs (3)
319XmlLinkedNode prevNode = (XmlLinkedNode)refNode.PreviousSibling!; 535XmlLinkedNode prevNode = (XmlLinkedNode)oldNode.PreviousSibling!; 543XmlLinkedNode prevNode = (XmlLinkedNode)oldNode.PreviousSibling!;