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.
XmlNamedNodeMap::RemoveNamedItem Method (String^)
.NET Framework (current version)
Removes the node from the XmlNamedNodeMap.
Assembly: System.Xml (in System.Xml.dll)
Parameters
- name
-
Type:
System::String^
The qualified name of the node to remove. The name is matched against the Name property of the matching node.
Return Value
Type: System.Xml::XmlNode^The XmlNode removed from this XmlNamedNodeMap or null if a matching node was not found.
The following example uses the XmlAttributeCollection class (which inherits from XmlNamedNodeMap) to remove an attribute.
#using <System.Xml.dll> using namespace System; using namespace System::IO; using namespace System::Xml; int main() { XmlDocument^ doc = gcnew XmlDocument; doc->LoadXml( "<book genre='novel' publicationdate='1997'> <title>Pride And Prejudice</title></book>" ); XmlAttributeCollection^ attrColl = doc->DocumentElement->Attributes; // Remove the publicationdate attribute. attrColl->RemoveNamedItem( "publicationdate" ); Console::WriteLine( "Display the modified XML..." ); Console::WriteLine( doc->OuterXml ); }
Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Available since 10
.NET Framework
Available since 1.1
Show: