System.Xml.XPath.XPathNamespaceScope Enumeration

Assembly: System.Xml.dll
Namespace: System.Xml.XPath
Summary
Defines the namespace scope. The enumeration can be passed to the XPathNavigator.MoveToFirstNamespace and XPathNavigator.MoveToNextNamespace methods to specify the type of namespace node to move to.
C# Syntax:
[Serializable]
public enum XPathNamespaceScope
See also:
System.Xml.XPath Namespace

System.Xml.XPath.XPathNamespaceScope Member List:

Public Fields
All Returns all namespaces defined in the scope of the current node. This includes the xmlns:xml namespace which is always declared implicitly. The order of the namespaces returned is not defined.
ExcludeXml Returns all namespaces defined in the scope of the current node, excluding the xmlns:xml namespace, which is always declared implicitly. The order of the namespaces returned is not defined.
Local Returns all namespaces that are defined locally at the current node.

Hierarchy:


Top of page

Copyright (c) 2002 Microsoft Corporation. All rights reserved.