[This is preliminary documentation and is subject to change.]

Moves the XPathObjectNavigator to the next sibling node of the current node.

Namespace: Tools.XmlT.XPathT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public override bool MoveToNext()
Visual Basic
Public Overrides Function MoveToNext As Boolean
Visual C++
public:
virtual bool MoveToNext() override
F#
abstract MoveToNext : unit -> bool 
override MoveToNext : unit -> bool 
JScript
public override function MoveToNext() : boolean

Return Value

true if the XPathObjectNavigator is successful moving to the next sibling node; otherwise, false if there are no more siblings or if the XPathObjectNavigator is currently positioned on an attribute node. If false, the position of the XPathObjectNavigator is unchanged.

Remarks

See Also