XElement.HasAttributes 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个值,该值指示此元素是否至少具有一个属性。
public:
property bool HasAttributes { bool get(); };
public bool HasAttributes { get; }
member this.HasAttributes : bool
Public ReadOnly Property HasAttributes As Boolean
属性值
如果此元素至少具有一个属性,则为 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