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!

DataDocumentNavigator.IsSamePosition

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

[Visual Basic]
Overrides Public Function IsSamePosition( _
   ByVal other As XmlNavigator _
) As Boolean
[C#]
public override bool IsSamePosition(
   XmlNavigator other
);
[C++]
public: override bool IsSamePosition(
   XmlNavigator* other
);
[JScript]
public override 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

DataDocumentNavigator Class | DataDocumentNavigator Members | System.NewXml Namespace