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.MoveToChild

Moves to the specified child node of the current node (index 0 is the first child).

[Visual Basic]
MustOverride Public Function MoveToChild( _
   ByVal i As Integer _
) As Boolean
[C#]
public abstract bool MoveToChild(
   int i
);
[C++]
public: virtual bool MoveToChild(
   int i
) = 0;
[JScript]
public abstract function MoveToChild(
   i : int
) : Boolean;

Parameters

i
The index of the child node.

Return Value

true if the specified child node exists; false if the specified child node does not exist.

See Also

XmlNavigator Class | XmlNavigator Members | System.NewXml Namespace