XmlNamespaceManager.AddNamespace Method
Adds the given namespace to the collection.
Namespace: System.Xml
Assembly: System.Xml (in System.Xml.dll)
Parameters
- prefix
- Type: System.String
The prefix to associate with the namespace being added. Use String.Empty to add a default namespace.
Note If the XmlNamespaceManager will be used for resolving namespaces in an XML Path Language (XPath) expression, a prefix must be specified. If an XPath expression does not include a prefix, it is assumed that the namespace Uniform Resource Identifier (URI) is the empty namespace. For more information about XPath expressions and the XmlNamespaceManager, refer to the XmlNode.SelectNodes and XPathExpression.SetContext methods.
- uri
- Type: System.String
The namespace to add.
| Exception | Condition |
|---|---|
| ArgumentException | The value for prefix is "xml" or "xmlns". |
| ArgumentNullException | The value for prefix or uri is null. |
XmlNamespaceManager does not check prefix and uri for conformance.
XmlReader checks names, including prefixes and namespaces, to ensure they are valid XML names according to the World Wide Web Consortium (W3C) specification. XmlNamespaceManager is used internally by XmlReader, so to avoid a duplication of efforts, XmlNamespaceManager assumes all prefixes and namespaces are valid.
If the prefix and namespace already exist within the current scope, the new prefix and namespace pair will replace the existing prefix/namespace combination. The same prefix and namespace combination can exist across different scopes.
The following prefix/namespace pairs are added by default to the XmlNamespaceManager. They can be determined at any scope.
Prefix | Namespace |
|---|---|
xmlns | http://www.w3.org/2000/xmlns/ (the xmlns prefix namespace) |
xml | http://www.w3.org/XML/1998/namespace (the XML namespace) |
String.Empty | String.Empty (the empty namespace). This value can be reassigned a different prefix. For example, xmlns="" defines the default namespace to be the empty namespace |
The following example uses XmlNamespaceManager to resolve namespaces in an XML fragment.
using System; using System.Xml; public class Sample { public static void Main() { XmlTextReader reader = null; try { // Create the string containing the XML to read. String xmlFrag = "<book>" + "<title>Pride And Prejudice</title>" + "<author>" + "<first-name>Jane</first-name>" + "<last-name>Austen</last-name>" + "</author>" + "<curr:price>19.95</curr:price>" + "<misc>&h;</misc>" + "</book>"; // Create an XmlNamespaceManager to resolve namespaces. NameTable nt = new NameTable(); XmlNamespaceManager nsmgr = new XmlNamespaceManager(nt); nsmgr.AddNamespace(String.Empty, "urn:samples"); //default namespace nsmgr.AddNamespace("curr", "urn:samples:dollar"); // Create an XmlParserContext. The XmlParserContext contains all the information // required to parse the XML fragment, including the entity information and the // XmlNamespaceManager to use for namespace resolution. XmlParserContext context; String subset = "<!ENTITY h 'hardcover'>"; context = new XmlParserContext(nt, nsmgr, "book", null, null, subset, null, null, XmlSpace.None); // Create the reader. reader = new XmlTextReader(xmlFrag, XmlNodeType.Element, context); // Parse the file and display the node values. while (reader.Read()) { if (reader.HasValue) Console.WriteLine("{0} [{1}] = {2}", reader.NodeType, reader.Name, reader.Value); else Console.WriteLine("{0} [{1}]", reader.NodeType, reader.Name); } } finally { if (reader != null) reader.Close(); } } } // End class
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.