XmlElement.HasAttribute Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Determina si el nodo actual tiene el atributo especificado.
Sobrecargas
HasAttribute(String) |
Determina si el nodo actual tiene un atributo con el nombre especificado. |
HasAttribute(String, String) |
Determina si el nodo actual tiene un atributo con el nombre local y el identificador URI de espacio de nombres especificados. |
HasAttribute(String)
- Source:
- XmlElement.cs
- Source:
- XmlElement.cs
- Source:
- XmlElement.cs
Determina si el nodo actual tiene un atributo con el nombre especificado.
public:
virtual bool HasAttribute(System::String ^ name);
public virtual bool HasAttribute (string name);
abstract member HasAttribute : string -> bool
override this.HasAttribute : string -> bool
Public Overridable Function HasAttribute (name As String) As Boolean
Parámetros
- name
- String
Nombre del atributo que se va a buscar. Es un nombre completo. Se compara con la propiedad Name
del nodo coincidente.
Devoluciones
true
si el nodo actual tiene el atributo especificado; de lo contrario, false
.
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" ) )
{
String^ genre = root->GetAttribute( "genre" );
Console::WriteLine( genre );
}
}
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")){
String genre = root.GetAttribute("genre");
Console.WriteLine(genre);
}
}
}
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 genre as String = root.GetAttribute("genre")
Console.WriteLine(genre)
end if
Console.WriteLine("Display the modified XML...")
Console.WriteLine(doc.InnerXml)
end sub
end class
Se aplica a
HasAttribute(String, String)
- Source:
- XmlElement.cs
- Source:
- XmlElement.cs
- Source:
- XmlElement.cs
Determina si el nodo actual tiene un atributo con el nombre local y el identificador URI de espacio de nombres especificados.
public:
virtual bool HasAttribute(System::String ^ localName, System::String ^ namespaceURI);
public virtual bool HasAttribute (string localName, string namespaceURI);
public virtual bool HasAttribute (string localName, string? namespaceURI);
abstract member HasAttribute : string * string -> bool
override this.HasAttribute : string * string -> bool
Public Overridable Function HasAttribute (localName As String, namespaceURI As String) As Boolean
Parámetros
- localName
- String
Nombre local del atributo que se va a buscar.
- namespaceURI
- String
Identificador URI de espacio de nombres del atributo que se va a buscar.
Devoluciones
true
si el nodo actual tiene el atributo especificado; de lo contrario, false
.