XmlNamedNodeMap.GetNamedItem Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Recupera il nodo XmlNode specificato dall'insieme di nodi in XmlNamedNodeMap.
Overload
GetNamedItem(String) |
Recupera un nodo XmlNode specificato in base al nome. |
GetNamedItem(String, String) |
Recupera un nodo con LocalName e NamespaceURI corrispondenti. |
GetNamedItem(String)
Recupera un nodo XmlNode specificato in base al nome.
public:
virtual System::Xml::XmlNode ^ GetNamedItem(System::String ^ name);
public virtual System.Xml.XmlNode GetNamedItem (string name);
public virtual System.Xml.XmlNode? GetNamedItem (string name);
abstract member GetNamedItem : string -> System.Xml.XmlNode
override this.GetNamedItem : string -> System.Xml.XmlNode
Public Overridable Function GetNamedItem (name As String) As XmlNode
Parametri
- name
- String
Nome completo del nodo da recuperare. Viene confrontato con la proprietà Name del nodo corrispondente.
Restituisce
Nodo XmlNode
con il nome specificato o null
se non viene rilevato un nodo corrispondente.
Esempio
Nell'esempio seguente viene usata la XmlAttributeCollection classe (che eredita da XmlNamedNodeMap
) per modificare un attributo.
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
XmlDocument^ doc = gcnew XmlDocument;
doc->LoadXml( "<book genre='novel' publicationdate='1997'> <title>Pride And Prejudice</title></book>" );
XmlAttributeCollection^ attrColl = doc->DocumentElement->Attributes;
// Change the value for the genre attribute.
XmlAttribute^ attr = dynamic_cast<XmlAttribute^>(attrColl->GetNamedItem( "genre" ));
attr->Value = "fiction";
Console::WriteLine( "Display the modified XML..." );
Console::WriteLine( doc->OuterXml );
}
using System;
using System.IO;
using System.Xml;
public class Sample
{
public static void Main()
{
XmlDocument doc = new XmlDocument();
doc.LoadXml("<book genre='novel' publicationdate='1997'> " +
" <title>Pride And Prejudice</title>" +
"</book>");
XmlAttributeCollection attrColl = doc.DocumentElement.Attributes;
// Change the value for the genre attribute.
XmlAttribute attr = (XmlAttribute)attrColl.GetNamedItem("genre");
attr.Value = "fiction";
Console.WriteLine("Display the modified XML...");
Console.WriteLine(doc.OuterXml);
}
}
Imports System.IO
Imports System.Xml
public class Sample
public shared sub Main()
Dim doc as XmlDocument = new XmlDocument()
doc.LoadXml("<book genre='novel' publicationdate='1997'> " & _
" <title>Pride And Prejudice</title>" & _
"</book>")
Dim attrColl as XmlAttributeCollection = doc.DocumentElement.Attributes
' Change the value for the genre attribute.
Dim attr as XmlAttribute = CType(attrColl.GetNamedItem("genre"),XmlAttribute)
attr.Value = "fiction"
Console.WriteLine("Display the modified XML...")
Console.WriteLine(doc.OuterXml)
end sub
end class
Si applica a
GetNamedItem(String, String)
Recupera un nodo con LocalName e NamespaceURI corrispondenti.
public:
virtual System::Xml::XmlNode ^ GetNamedItem(System::String ^ localName, System::String ^ namespaceURI);
public virtual System.Xml.XmlNode GetNamedItem (string localName, string namespaceURI);
public virtual System.Xml.XmlNode? GetNamedItem (string localName, string? namespaceURI);
abstract member GetNamedItem : string * string -> System.Xml.XmlNode
override this.GetNamedItem : string * string -> System.Xml.XmlNode
Public Overridable Function GetNamedItem (localName As String, namespaceURI As String) As XmlNode
Parametri
- localName
- String
Nome locale del nodo da recuperare.
- namespaceURI
- String
URI (Uniform Resource Identifier) dello spazio dei nomi del nodo da recuperare.
Restituisce
XmlNode con il nome locale e l'URI dello spazio dei nomi corrispondenti o null
se non è stato rilevato un nodo corrispondente.