XElement.HasAttributes Proprietà

Definizione

Ottiene un valore che indica se questo elemento ha almeno un attributo.

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

Valore della proprietà

true se l'elemento ha almeno un attributo; in caso contrario, false.

Esempio

Nell'esempio seguente viene utilizzata questa proprietà.

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)

Nell'esempio viene prodotto l'output seguente:

True
False

Si applica a

Vedi anche