AddNamespace()

XmlNamespaceManager::AddNamespace(String, String) method

Adds the given namespace to the collection.

virtual void System::Xml::XmlNamespaceManager::AddNamespace(String prefix, String uri)

Arguments

ParameterTypeDescription
prefixStringThe prefix to associate with the namespace being added. Use String::Empty to add a default namespace. 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(String) and XPathExpression::SetContext(SharedPtr) methods.
uriStringThe namespace to add.

See Also