Metodo System::Xml::XmlElement::GetElementsByTagName
Contenuti
[
Nascondere
]XmlElement::GetElementsByTagName(String, String) method
Restituisce un XmlNodeList contenente un elenco di tutti gli elementi discendenti che corrispondono ai valori specificati XmlElement::get_LocalName e XmlElement::get_NamespaceURI.
virtual SharedPtr<XmlNodeList> System::Xml::XmlElement::GetElementsByTagName(String localName, String namespaceURI)
| Parametro | Tipo | Descrizione |
|---|---|---|
| localName | String | Il nome locale da confrontare. L’asterisco (*) è un valore speciale che corrisponde a tutti i tag. |
| namespaceURI | String | L’URI dello spazio dei nomi da confrontare. |
ReturnValue
Una XmlNodeList contenente un elenco di tutti i nodi corrispondenti. L’elenco è vuoto se non ci sono nodi corrispondenti.
Vedi anche
- Typedef SharedPtr
- Class XmlNodeList
- Class String
- Class XmlElement
- Namespace System::Xml
- Library Aspose.Page for C++
XmlElement::GetElementsByTagName(String) method
Restituisce una XmlNodeList contenente un elenco di tutti gli elementi discendenti che corrispondono al XmlElement::get_Name specificato.
virtual SharedPtr<XmlNodeList> System::Xml::XmlElement::GetElementsByTagName(String name)
| Parametro | Tipo | Descrizione |
|---|---|---|
| name | String | Il tag nome da confrontare. Questo è un nome qualificato. Viene confrontato con il valore get_Name del nodo corrispondente. L’asterisco (*) è un valore speciale che corrisponde a tutti i tag. |
ReturnValue
Una XmlNodeList contenente un elenco di tutti i nodi corrispondenti. L’elenco è vuoto se non ci sono nodi corrispondenti.
Vedi anche
- Typedef SharedPtr
- Class XmlNodeList
- Class String
- Class XmlElement
- Namespace System::Xml
- Library Aspose.Page for C++