Leggere in inglese

Condividi tramite


Non è possibile selezionare elementi XML dal tipo 'type'

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

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

ID errore: BC36807

Per correggere l'errore

  • Se si fa riferimento a un attributo 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