XPathNavigator.MoveToFirstChild Method

Definition

When overridden in a derived class, moves the XPathNavigator to the first child node of the current node.

public:
 abstract bool MoveToFirstChild();
public abstract bool MoveToFirstChild ();
abstract member MoveToFirstChild : unit -> bool
Public MustOverride Function MoveToFirstChild () As Boolean

Returns

true if the XPathNavigator is successful moving to the first child node of the current node; otherwise, false. If false, the position of the XPathNavigator is unchanged.

Examples

For an example of the MoveToFirstChild method, see the Clone method.

Remarks

Root and Element are the only two XPathNodeType values that can have children. This property always returns false for all other XPathNodeType node types.

Applies to

See also