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::GetAttributeNode Method (String^)
.NET Framework (current version)
Returns the XmlAttribute with the specified name.
Assembly: System.Xml (in System.Xml.dll)
Parameters
- name
-
Type:
System::String^
The name of the attribute to retrieve. This is a qualified name. It is matched against the Name property of the matching node.
Return Value
Type: System.Xml::XmlAttribute^The specified XmlAttribute or null if a matching attribute was not found.
The following example checks to see if the element has the specified 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' ISBN='1-861001-57-5'><title>Pride And Prejudice</title></book>" ); XmlElement^ root = doc->DocumentElement; // Check to see if the element has a genre attribute. if ( root->HasAttribute( "genre" ) ) { XmlAttribute^ attr = root->GetAttributeNode( "genre" ); Console::WriteLine( attr->Value ); } }
Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Available since 10
.NET Framework
Available since 1.1
Show: