Leer en inglés

Compartir a través de


No se pueden seleccionar elementos XML del tipo 'tipo'

Se ha hecho referencia a un elemento secundario XML para un objeto que no es de tipo XElement, XDocumento IEnumerable(Of XElement). Para obtener más información, consulte XML Child Axis Property.

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

Identificador de error: BC36807

Para corregir este error

  • Asegúrese de que el objeto del que hace referencia a un atributo está fuertemente tipado como XElement, XDocumento IEnumerable(Of XElement). El siguiente es un ejemplo:
VB
Dim elem As XElement = <root>  
                         <child />  
                       </root>  
Dim var = elem.<child>  

Consulte también