Gets a collection of defined prefix-namespace mappings that are currently in scope.
Assembly: System.Xml (in System.Xml.dll)
Function GetNamespacesInScope ( _ scope As XmlNamespaceScope _ ) As IDictionary(Of String, String)
IDictionary<string, string> GetNamespacesInScope( XmlNamespaceScope scope )
IDictionary<String^, String^>^ GetNamespacesInScope( XmlNamespaceScope scope )
abstract GetNamespacesInScope : scope:XmlNamespaceScope -> IDictionary<string, string>
Parameters
- scope
- Type: System.Xml.XmlNamespaceScope
An XmlNamespaceScope value that specifies the type of namespace nodes to return.
Return Value
Type: System.Collections.Generic.IDictionary<String, String>An IDictionary that contains the current in-scope namespaces.
The collection is keyed by prefix and can be used to enumerate the namespaces currently in scope. The collection is a disconnected copy of the current namespace list.
The following table lists the XmlNamespaceScope values and how it affects the whether or not the default and built-in namespaces are returned by the GetNamespacesInScope method.
|
XmlNamespaceScope value |
xmlns:xml |
xmlns:xmlns |
xmlns="" |
|---|---|---|---|
|
All |
yes |
no |
no |
|
ExcludeXml |
no |
no |
no |
|
Local |
no |
no |
yes |
.NET Framework
Supported in: 4, 3.5, 3.0, 2.0.NET Framework Client Profile
Supported in: 4, 3.5 SP1Portable Class Library
Supported in: Portable Class LibraryWindows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.