XmlElement::HasAttribute Method (String^)
.NET Framework (current version)
Determines whether the current node has an attribute with the specified name.
Assembly: System.Xml (in System.Xml.dll)
Parameters
- name
-
Type:
System::String^
The name of the attribute to find. This is a qualified name. It is matched against the Name property of the matching node.
Return Value
Type: System::Booleantrue if the current node has the specified attribute; otherwise, false.
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" ) ) { String^ genre = root->GetAttribute( "genre" ); Console::WriteLine( genre ); } }
Universal Windows Platform
Available since 10
.NET Framework
Available since 1.1
Available since 10
.NET Framework
Available since 1.1
Show: