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.
XmlElement::SetAttributeNode Method (String^, String^)
.NET Framework (current version)
Adds the specified XmlAttribute.
Assembly: System.Xml (in System.Xml.dll)
Parameters
- localName
-
Type:
System::String^
The local name of the attribute.
- namespaceURI
-
Type:
System::String^
The namespace URI of the attribute.
The XmlAttribute does not have any children. Use Value to assign a text value to the attribute or use AppendChild (or a similar method) to add children to the attribute.
The following example adds an attribute to an element.
#using <System.Xml.dll> using namespace System; using namespace System::IO; using namespace System::Xml; int main() { XmlDocument^ doc = gcnew XmlDocument; doc->LoadXml( "<book xmlns:bk='urn:samples' bk:ISBN='1-861001-57-5'><title>Pride And Prejudice</title></book>" ); XmlElement^ root = doc->DocumentElement; // Add a new attribute. XmlAttribute^ attr = root->SetAttributeNode( "genre", "urn:samples" ); attr->Value = "novel"; Console::WriteLine( "Display the modified XML..." ); Console::WriteLine( doc->InnerXml ); }
Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Available since 10
.NET Framework
Available since 1.1
Show: