XElement.HasAttributes プロパティ

定義

この要素が 1 つ以上の属性を持っているかどうかを示す値を取得します。

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

プロパティ値

この要素が 1 つ以上の属性を持っている場合は true。それ以外の場合は false

次の例では、このプロパティを使用します。

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)

この例を実行すると、次の出力が生成されます。

True
False

適用対象

こちらもご覧ください