XmlElement.RemoveAttributeNode Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Quita un XmlAttribute.
Sobrecargas
RemoveAttributeNode(XmlAttribute) |
Quita el objeto XmlAttribute especificado. |
RemoveAttributeNode(String, String) |
Quita el XmlAttribute especificado mediante el nombre local y el identificador URI de espacio de nombres. (Si el atributo quitado tiene un valor predeterminado, se reemplaza inmediatamente). |
RemoveAttributeNode(XmlAttribute)
Quita el objeto XmlAttribute especificado.
public:
virtual System::Xml::XmlAttribute ^ RemoveAttributeNode(System::Xml::XmlAttribute ^ oldAttr);
public virtual System.Xml.XmlAttribute RemoveAttributeNode (System.Xml.XmlAttribute oldAttr);
public virtual System.Xml.XmlAttribute? RemoveAttributeNode (System.Xml.XmlAttribute oldAttr);
abstract member RemoveAttributeNode : System.Xml.XmlAttribute -> System.Xml.XmlAttribute
override this.RemoveAttributeNode : System.Xml.XmlAttribute -> System.Xml.XmlAttribute
Public Overridable Function RemoveAttributeNode (oldAttr As XmlAttribute) As XmlAttribute
Parámetros
- oldAttr
- XmlAttribute
Nodo XmlAttribute
que se va a quitar. Si el atributo que se quita tiene un valor predeterminado, se reemplaza inmediatamente.
Devoluciones
XmlAttribute
que se ha quitado o null
si oldAttr
no es un nodo de atributo de XmlElement
.
Excepciones
Este nodo es de sólo lectura.
Se aplica a
RemoveAttributeNode(String, String)
Quita el XmlAttribute especificado mediante el nombre local y el identificador URI de espacio de nombres. (Si el atributo quitado tiene un valor predeterminado, se reemplaza inmediatamente).
public:
virtual System::Xml::XmlAttribute ^ RemoveAttributeNode(System::String ^ localName, System::String ^ namespaceURI);
public virtual System.Xml.XmlAttribute RemoveAttributeNode (string localName, string namespaceURI);
public virtual System.Xml.XmlAttribute? RemoveAttributeNode (string localName, string? namespaceURI);
abstract member RemoveAttributeNode : string * string -> System.Xml.XmlAttribute
override this.RemoveAttributeNode : string * string -> System.Xml.XmlAttribute
Public Overridable Function RemoveAttributeNode (localName As String, namespaceURI As String) As XmlAttribute
Parámetros
- localName
- String
Nombre local del atributo.
- namespaceURI
- String
URI de espacio de nombres del atributo.
Devoluciones
XmlAttribute
que se ha quitado o null
si XmlElement
no tiene un nodo de atributo coincidente.
Excepciones
Este nodo es de sólo lectura.
Ejemplos
En el ejemplo siguiente se quita un atributo de un elemento .
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
XmlDocument^ doc = gcnew XmlDocument;
doc->LoadXml( "<book xmlns:bk='urn:samples' bk:ISBN='1-861001-57-5'><title>Pride And Prejudice</title></book>" );
XmlElement^ root = doc->DocumentElement;
// Remove the ISBN attribute.
root->RemoveAttributeNode( "ISBN", "urn:samples" );
Console::WriteLine( "Display the modified XML..." );
Console::WriteLine( doc->InnerXml );
}
using System;
using System.IO;
using System.Xml;
public class Sample
{
public static void Main()
{
XmlDocument doc = new XmlDocument();
doc.LoadXml("<book xmlns:bk='urn:samples' bk:ISBN='1-861001-57-5'>" +
"<title>Pride And Prejudice</title>" +
"</book>");
XmlElement root = doc.DocumentElement;
// Remove the ISBN attribute.
root.RemoveAttributeNode("ISBN", "urn:samples");
Console.WriteLine("Display the modified XML...");
Console.WriteLine(doc.InnerXml);
}
}
Imports System.IO
Imports System.Xml
public class Sample
public shared sub Main()
Dim doc as XmlDocument = new XmlDocument()
doc.LoadXml("<book xmlns:bk='urn:samples' bk:ISBN='1-861001-57-5'>" & _
"<title>Pride And Prejudice</title>" & _
"</book>")
Dim root as XmlElement = doc.DocumentElement
' Remove the ISBN attribute.
root.RemoveAttributeNode("ISBN", "urn:samples")
Console.WriteLine("Display the modified XML...")
Console.WriteLine(doc.InnerXml)
end sub
end class