XmlElement.GetAttributeNode Método

Definición

Devuelve el XmlAttribute especificado.

Sobrecargas

GetAttributeNode(String)

Devuelve el XmlAttribute con el nombre especificado.

GetAttributeNode(String, String)

Devuelve el XmlAttribute con el nombre local y el identificador URI de espacio de nombres que se hayan especificado.

GetAttributeNode(String)

Devuelve el XmlAttribute con el nombre especificado.

public:
 virtual System::Xml::XmlAttribute ^ GetAttributeNode(System::String ^ name);
public virtual System.Xml.XmlAttribute GetAttributeNode (string name);
public virtual System.Xml.XmlAttribute? GetAttributeNode (string name);
abstract member GetAttributeNode : string -> System.Xml.XmlAttribute
override this.GetAttributeNode : string -> System.Xml.XmlAttribute
Public Overridable Function GetAttributeNode (name As String) As XmlAttribute

Parámetros

name
String

Nombre del atributo que se va a recuperar. Es un nombre completo. Se compara con la propiedad Name del nodo coincidente.

Devoluciones

XmlAttribute

XmlAttribute o null que se especifica si no se encuentra un atributo coincidente.

Ejemplos

En el ejemplo siguiente se comprueba si el elemento tiene el atributo especificado.

#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 );
   }
}
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);
   }
  }
}
Imports System.IO
Imports System.Xml

public class Sample

  public shared sub Main()

    Dim doc as XmlDocument = new XmlDocument()
    doc.LoadXml("<book genre='novel' ISBN='1-861001-57-5'>" & _
                "<title>Pride And Prejudice</title>" & _
                "</book>")      

    Dim root as XmlElement = doc.DocumentElement

    ' Check to see if the element has a genre attribute.
    if (root.HasAttribute("genre"))
     Dim attr as XmlAttribute = root.GetAttributeNode("genre")
     Console.WriteLine(attr.Value)
    end if
       
    Console.WriteLine("Display the modified XML...")
    Console.WriteLine(doc.InnerXml)

  end sub
end class

Se aplica a

GetAttributeNode(String, String)

Devuelve el XmlAttribute con el nombre local y el identificador URI de espacio de nombres que se hayan especificado.

public:
 virtual System::Xml::XmlAttribute ^ GetAttributeNode(System::String ^ localName, System::String ^ namespaceURI);
public virtual System.Xml.XmlAttribute GetAttributeNode (string localName, string namespaceURI);
public virtual System.Xml.XmlAttribute? GetAttributeNode (string localName, string? namespaceURI);
abstract member GetAttributeNode : string * string -> System.Xml.XmlAttribute
override this.GetAttributeNode : string * string -> System.Xml.XmlAttribute
Public Overridable Function GetAttributeNode (localName As String, namespaceURI As String) As XmlAttribute

Parámetros

localName
String

Nombre local del atributo.

namespaceURI
String

URI de espacio de nombres del atributo.

Devoluciones

XmlAttribute

XmlAttribute o null que se especifica si no se encuentra un atributo coincidente.

Se aplica a