System::Xml::XmlReader::ReadToDescendant metodo

XmlReader::ReadToDescendant(String, String) method

Avanza il XmlReader al prossimo elemento discendente con il nome locale e l’URI dello spazio dei nomi specificati.

virtual bool System::Xml::XmlReader::ReadToDescendant(String localName, String namespaceURI)
ParametroTipoDescrizione
localNameStringaIl nome locale dell’elemento a cui desideri spostarti.
namespaceURIStringaL’URI dello spazio dei nomi dell’elemento a cui desideri spostarti.

ReturnValue

true if a matching descendant element is found; otherwise false. If a matching child element is not found, the XmlReader is positioned on the end tag (XmlReader::get_NodeType value is XmlNodeType::EndElement) of the element. If the XmlReader is not positioned on an element when XmlReader::ReadToDescendant(String,String) was called, this method returns false and the position of the XmlReader is not changed.

Vedi anche

XmlReader::ReadToDescendant(String) method

Avanza il XmlReader al prossimo elemento discendente con il nome qualificato specificato.

virtual bool System::Xml::XmlReader::ReadToDescendant(String name)
ParametroTipoDescrizione
nomeStringaIl nome qualificato dell’elemento a cui desideri spostarti.

ReturnValue

true if a matching descendant element is found; otherwise false. If a matching child element is not found, the XmlReader is positioned on the end tag (XmlReader::get_NodeType value is XmlNodeType::EndElement) of the element. If the XmlReader is not positioned on an element when XmlReader::ReadToDescendant(String) was called, this method returns false and the position of the XmlReader is not changed.

Vedi anche