XElement.HasAttributes Propriedade

Definição

Recebe um valor que indica se este elemento tem pelo menos um atributo.

public:
 property bool HasAttributes { bool get(); };
public bool HasAttributes { get; }
member this.HasAttributes : bool
Public ReadOnly Property HasAttributes As Boolean

Valor de Propriedade

true se este elemento tiver pelo menos um atributo; caso contrário false.

Exemplos

O exemplo seguinte utiliza esta propriedade.

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 exemplo produz a seguinte saída:

True
False

Aplica-se a

Ver também