Base:
property
NextSibling
System.Xml.XmlLinkedNode.NextSibling
1 override of NextSibling
System.Data.Common (1)
System\Xml\XmlBoundElement.cs (1)
93public override XmlNode? NextSibling
6 references to NextSibling
Microsoft.Build (1)
Xml\ProjectXmlUtilities.XmlElementChildIterator.cs (1)
52_current = GetNextNode(_current.NextSibling);
System.Data.Common (3)
System\Xml\XmlBoundElement.cs (3)
99XmlNode? next = base.NextSibling; 106return base.NextSibling; 113internal XmlNode? SafeNextSibling => base.NextSibling;
System.Security.Cryptography.Xml (2)
System\Security\Cryptography\Xml\EncryptedXml.cs (1)
861XmlNode? sibling = inputElement.NextSibling;
System\Security\Cryptography\Xml\XmlDecryptionTransform.cs (1)
236XmlNode sibling = encryptedDataElement.NextSibling!;