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