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

Determines whether the current XPathNavigator is at the same position as the specified XPathNavigator.

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

Syntax

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

Parameters

other
Type: System.Xml.XPath..::..XPathNavigator
The XPathNavigator to compare to this XPathNavigator.

Return Value

Returns true if other is XPathObjectNavigator, has same count of items in its Location as current XPathObjectNavigator and all those steps equals to steps in current XPathObjectNavigator

See Also