XPathNamespaceScope

XPathNamespaceScope enum

Defines the namespace scope.

enum class XPathNamespaceScope

Values

NameValueDescription
All0Returns 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.
ExcludeXml1Returns all namespaces defined in the scope of the current node, excluding the xmlns:xml namespace. The xmlns:xml namespace is always declared implicitly. The order of the namespaces returned is not defined.
Local2Returns all namespaces that are defined locally at the current node.

See Also