XmlElement::HasAttribute Method (String^)

 

Determines whether the current node has an attribute with the specified name.

Namespace:   System.Xml
Assembly:  System.Xml (in System.Xml.dll)

public:
virtual bool HasAttribute(
	String^ name
)

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::Boolean

true 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
Return to top
Show: