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