NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlNavigator.IsSamePosition

Determines whether this XmlNavigator is at the same position as the specified XmlNavigator.

[Visual Basic]
MustOverride Public Function IsSamePosition( _
   ByVal other As XmlNavigator _
) As Boolean
[C#]
public abstract bool IsSamePosition(
   XmlNavigator other
);
[C++]
public: virtual bool IsSamePosition(
   XmlNavigator* other
) = 0;
[JScript]
public abstract function IsSamePosition(
   other : XmlNavigator
) : Boolean;

Parameters

other
XmlNavigator with which you want to compare position.

Return Value

true if this XmlNavigator is at the same position as the specified XmlNavigator; otherwise, false.

Remarks

This also implies the other XmlNavigator is the same kind of XmlNavigator pointing at the same document instance.

See Also

XmlNavigator Class | XmlNavigator Members | System.NewXml Namespace