XPathNavigator.MoveToNamespace(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Moves the XPathNavigator to the namespace node with the specified namespace prefix.
public:
virtual bool MoveToNamespace(System::String ^ name);
public:
abstract bool MoveToNamespace(System::String ^ name);
public virtual bool MoveToNamespace (string name);
public abstract bool MoveToNamespace (string name);
abstract member MoveToNamespace : string -> bool
override this.MoveToNamespace : string -> bool
abstract member MoveToNamespace : string -> bool
Public Overridable Function MoveToNamespace (name As String) As Boolean
Public MustOverride Function MoveToNamespace (name As String) As Boolean
Parameters
- name
- String
The namespace prefix of the namespace node.
Returns
true
if the XPathNavigator is successful moving to the specified namespace; false
if a matching namespace node was not found, or if the XPathNavigator is not positioned on an element node. If false
, the position of the XPathNavigator is unchanged.
Remarks
After the XPathNavigator has been moved to the namespace node, the Name property reflects the name of the namespace.
When the XPathNavigator is positioned on a namespace node, the methods MoveToNext, MoveToPrevious, and MoveToFirst are not applicable. These methods always return false
and do not change the position of the XPathNavigator. Rather, you can call MoveToNextNamespace to move to the next namespace node.
After the XPathNavigator is positioned on a namespace node, you can call MoveToParent to move back to the element node.
For a definition of namespace nodes, see section 5.4 of the W3C XML Path Language (XPath) recommendation.