System::Xml::XmlNamedNodeMap::RemoveNamedItem method
Contents
[
Hide
]XmlNamedNodeMap::RemoveNamedItem(String) method
Removes the node from the XmlNamedNodeMap.
virtual SharedPtr<XmlNode> System::Xml::XmlNamedNodeMap::RemoveNamedItem(String name)
Parameter | Type | Description |
---|---|---|
name | String | The qualified name of the node to remove. The name is matched against the XmlNode::get_Name value of the matching node. |
ReturnValue
The XmlNode removed from this XmlNamedNodeMap or nullptr if a matching node was not found.
See Also
- Typedef SharedPtr
- Class XmlNode
- Class String
- Class XmlNamedNodeMap
- Namespace System::Xml
- Library Aspose.Font for C++
XmlNamedNodeMap::RemoveNamedItem(String, String) method
Removes a node with the matching XmlNode::get_LocalName and XmlNode::get_NamespaceURI values.
virtual SharedPtr<XmlNode> System::Xml::XmlNamedNodeMap::RemoveNamedItem(String localName, String namespaceURI)
Parameter | Type | Description |
---|---|---|
localName | String | The local name of the node to remove. |
namespaceURI | String | The namespace URI of the node to remove. |
ReturnValue
The XmlNode removed or nullptr if a matching node was not found.
See Also
- Typedef SharedPtr
- Class XmlNode
- Class String
- Class XmlNamedNodeMap
- Namespace System::Xml
- Library Aspose.Font for C++