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

Moves the XPathObjectNavigator to the same position as the specified XPathObjectNavigator.

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

Syntax

C#
public override bool MoveTo(
	XPathNavigator other
)
Visual Basic
Public Overrides Function MoveTo ( _
	other As XPathNavigator _
) As Boolean
Visual C++
public:
virtual bool MoveTo(
	XPathNavigator^ other
) override
F#
abstract MoveTo : 
        other:XPathNavigator -> bool 
override MoveTo : 
        other:XPathNavigator -> bool 
JScript
public override function MoveTo(
	other : XPathNavigator
) : boolean

Parameters

other
Type: System.Xml.XPath..::..XPathNavigator
The XPathNavigator positioned on the node that you want to move to.

Return Value

Returns true if the XPathObjectNavigator is successful moving to the same position as the specified XPathObjectNavigator; otherwise, false. If false, the position of the XPathObjectNavigator is unchanged.

Remarks

Changing position succeds only if other is XPathObjectNavigator

See Also