XmlNamedNodeMap.RemoveNamedItem Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Remove o nó especificado do XmlNamedNodeMap
.
Sobrecargas
RemoveNamedItem(String) |
Remove o nó do |
RemoveNamedItem(String, String) |
Remove um nó com LocalName e NamespaceURI correspondentes. |
RemoveNamedItem(String)
Remove o nó do XmlNamedNodeMap
.
public:
virtual System::Xml::XmlNode ^ RemoveNamedItem(System::String ^ name);
public virtual System.Xml.XmlNode RemoveNamedItem (string name);
public virtual System.Xml.XmlNode? RemoveNamedItem (string name);
abstract member RemoveNamedItem : string -> System.Xml.XmlNode
override this.RemoveNamedItem : string -> System.Xml.XmlNode
Public Overridable Function RemoveNamedItem (name As String) As XmlNode
Parâmetros
- name
- String
O nome qualificado do nó a ser removido. O nome é comparado com a propriedade Name do nó correspondente.
Retornos
O XmlNode
removido deste XmlNamedNodeMap
ou null
se um nó correspondente não foi encontrado.
Exemplos
O exemplo a seguir usa a XmlAttributeCollection classe (que herda de XmlNamedNodeMap
) para remover um atributo.
#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;
// Remove the publicationdate attribute.
attrColl->RemoveNamedItem( "publicationdate" );
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;
// Remove the publicationdate attribute.
attrColl.RemoveNamedItem("publicationdate");
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
' Remove the publicationdate attribute.
attrColl.RemoveNamedItem("publicationdate")
Console.WriteLine("Display the modified XML...")
Console.WriteLine(doc.OuterXml)
end sub
end class
Aplica-se a
RemoveNamedItem(String, String)
Remove um nó com LocalName e NamespaceURI correspondentes.
public:
virtual System::Xml::XmlNode ^ RemoveNamedItem(System::String ^ localName, System::String ^ namespaceURI);
public virtual System.Xml.XmlNode RemoveNamedItem (string localName, string namespaceURI);
public virtual System.Xml.XmlNode? RemoveNamedItem (string localName, string? namespaceURI);
abstract member RemoveNamedItem : string * string -> System.Xml.XmlNode
override this.RemoveNamedItem : string * string -> System.Xml.XmlNode
Public Overridable Function RemoveNamedItem (localName As String, namespaceURI As String) As XmlNode
Parâmetros
- localName
- String
O nome local do nó a ser removido.
- namespaceURI
- String
O URI de namespace do nó a ser removido.
Retornos
O XmlNode removido ou null
se um nó correspondente não foi encontrado.