XNode::IsAfter Method (XNode^)
Determines if the current node appears after a specified node in terms of document order.
Assembly: System.Xml.Linq (in System.Xml.Linq.dll)
Parameters
- node
-
Type:
System.Xml.Linq::XNode^
The XNode to compare for document order.
Return Value
Type: System::Booleantrue if this node appears after the specified node; otherwise false.
The XContainer stores its child nodes as a singly-linked list of XNode objects. This means that the CompareDocumentOrder method must traverse the ancestors of the two nodes being compared until it finds the common parent. Then it must traverse the list of the common parent’s child nodes to determine the order of the two nodes being compared. Therefore, using this method might affect your performance.
Available since 8
.NET Framework
Available since 3.5
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1