Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

XPathNavigator::GetNamespacesInScope Method (XmlNamespaceScope)

 

Returns the in-scope namespaces of the current node.

Namespace:   System.Xml.XPath
Assembly:  System.Xml (in System.Xml.dll)

public:
virtual IDictionary<String^, String^>^ GetNamespacesInScope(
	XmlNamespaceScope scope
)

Parameters

scope
Type: System.Xml::XmlNamespaceScope

An XmlNamespaceScope value specifying the namespaces to return.

Return Value

Type: System.Collections.Generic::IDictionary<String^, String^>^

An IDictionary<TKey, TValue> collection of namespace names keyed by prefix.

The namespaces returned depends on the XmlNamespaceScope value specified.

XmlNamespaceScope Value

Namespaces Returned

All

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

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

All namespaces that are defined locally at the current node.

.NET Framework
Available since 2.0
Silverlight
Available since 4.0
Return to top
Show:
© 2017 Microsoft