Leggere in inglese

Condividi tramite


Non è possibile selezionare elementi discendenti XML dal tipo 'type'

È stato fatto riferimento a un elemento discendente XML per un oggetto che non è di tipo XElement, XDocumento IEnumerable(Of XElement). Per altre informazioni, vedere XML Descendant Axis Property.

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

ID errore: BC36809

Per correggere l'errore

  • Se si fa riferimento a un elemento discendente di un oggetto, quest'ultimo deve essere fortemente tipizzato come XElement, XDocumento IEnumerable(Of XElement). Di seguito è illustrato un esempio:
Dim elem As XElement = <root>  
                         <child />  
                       </root>  
Dim var = elem...<child>  

Vedi anche