XmlElement.GetAttributeNode Method (String)
.NET Framework 2.0
Returns the XmlAttribute with the specified name.
Namespace: System.Xml
Assembly: System.Xml (in system.xml.dll)
Assembly: System.Xml (in system.xml.dll)
public XmlAttribute GetAttributeNode ( String name )
public function GetAttributeNode ( name : String ) : XmlAttribute
Parameters
- name
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
The specified XmlAttribute or a null reference (Nothing in Visual Basic) if a matching attribute was not found.The following example checks to see if the element has the specified attribute.
using System; using System.IO; using System.Xml; public class Sample { public static void Main() { XmlDocument doc = new 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); } } }
import System.*;
import System.IO.*;
import System.Xml.*;
public class Sample
{
public static void main(String[] args)
{
XmlDocument doc = new XmlDocument();
doc.LoadXml("<book genre='novel' ISBN='1-861001-57-5'>"
+ "<title>Pride And Prejudice</title>"
+ "</book>");
XmlElement root = doc.get_DocumentElement();
// Check to see if the element has a genre attribute.
if (root.HasAttribute("genre")) {
XmlAttribute attr = root.GetAttributeNode("genre");
Console.WriteLine(attr.get_Value());
}
} //main
} //Sample
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.