mscorlib(4.0.0.0) API with additions
XmlNodeOrder.cs
1 namespace System.Xml
2 {
4  public enum XmlNodeOrder
5  {
7  Before,
9  After,
11  Same,
13  Unknown
14  }
15 }
The current node of this navigator is before the current node of the supplied navigator.
The two navigators are positioned on the same node.
XmlNodeOrder
Describes the document order of a node compared to a second node.
Definition: XmlNodeOrder.cs:4
The current node of this navigator is after the current node of the supplied navigator.