영어로 읽기

다음을 통해 공유


XML 하위 요소는 'type' 형식에서 선택할 수 없습니다.

XML 하위 항목이 XElement, XDocument또는 IEnumerable(Of XElement)형식이 아닌 개체에 대해 참조되었습니다. 자세한 내용은 XML Descendant Axis Property을 참조하세요.

VB
' Generates an error.  
Dim var = "sample text"...<childElement>  

오류 ID: BC36809

이 오류를 해결하려면

  • 하위 요소를 참조하는 개체가 XElement, XDocument또는 IEnumerable(Of XElement)로 강력하게 형식화되었는지 확인합니다. 다음은 예제입니다.
VB
Dim elem As XElement = <root>  
                         <child />  
                       </root>  
Dim var = elem...<child>  

참고 항목