XElement.HasAttributes Propiedad
Definición
Obtiene un valor que indica si este elemento tiene al menos un atributo.Gets a value indicating whether this element has at least one attribute.
public:
property bool HasAttributes { bool get(); };
public bool HasAttributes { get; }
member this.HasAttributes : bool
Public ReadOnly Property HasAttributes As Boolean
Valor de propiedad
true
si este elemento tiene al menos un atributo; de lo contrario, false
.true
if this element has at least one attribute; otherwise false
.
Ejemplos
En el ejemplo siguiente se utiliza esta propiedad.The following example uses this property.
XElement xmlTree1 = new XElement("Root",
new XAttribute("Att1", 1)
);
Console.WriteLine(xmlTree1.HasAttributes);
XElement xmlTree2 = new XElement("Root");
Console.WriteLine(xmlTree2.HasAttributes);
Dim xmlTree1 As XElement = <Root Att1="1"/>
Console.WriteLine(xmlTree1.HasAttributes)
Dim xmlTree2 As XElement = <Root/>
Console.WriteLine(xmlTree2.HasAttributes)
Este ejemplo produce el siguiente resultado:This example produces the following output:
True
False