XmlElement.RemoveAttribute Methode

Definition

Entfernt das angegebene Attribut. (Hat das entfernte Attribut einen Standardwert, wird es sofort ersetzt.)

Überlädt

RemoveAttribute(String)

Entfernt ein Attribut nach dem Namen.

RemoveAttribute(String, String)

Entfernt ein Attribut mit dem angegebenen lokalen Namen und Namespace-URI. (Hat das entfernte Attribut einen Standardwert, wird es sofort ersetzt.)

RemoveAttribute(String)

Entfernt ein Attribut nach dem Namen.

public:
 virtual void RemoveAttribute(System::String ^ name);
public virtual void RemoveAttribute (string name);
abstract member RemoveAttribute : string -> unit
override this.RemoveAttribute : string -> unit
Public Overridable Sub RemoveAttribute (name As String)

Parameter

name
String

Der Name des zu entfernenden Attributs. Dies ist ein qualifizierter Name. Er wird mit der Name-Eigenschaft des übereinstimmenden Knotens verglichen.

Ausnahmen

Der Knoten ist schreibgeschützt.

Beispiele

Im folgenden Beispiel wird ein Attribut aus einem Element entfernt.

#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' ISBN='1-861001-57-5'><title>Pride And Prejudice</title></book>" );
   XmlElement^ root = doc->DocumentElement;
   
   // Remove the genre attribute.
   root->RemoveAttribute( "genre" );
   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 genre='novel' ISBN='1-861001-57-5'>" +
                "<title>Pride And Prejudice</title>" +
                "</book>");

    XmlElement root = doc.DocumentElement;

    // Remove the genre attribute.
    root.RemoveAttribute("genre");

    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 genre='novel' ISBN='1-861001-57-5'>" & _
                "<title>Pride And Prejudice</title>" & _
                "</book>")      

    Dim root as XmlElement = doc.DocumentElement

    ' Remove the genre attribute.
    root.RemoveAttribute("genre")

    Console.WriteLine("Display the modified XML...")
    Console.WriteLine(doc.InnerXml)

  end sub
end class

Hinweise

Wenn das entfernte Attribut bekannt ist, dass ein Standardwert vorhanden ist, wird sofort ein Attribut angezeigt, das den Standardwert enthält und gegebenenfalls den entsprechenden Namespace-URI, den lokalen Namen und das Präfix enthält.

Gilt für

RemoveAttribute(String, String)

Entfernt ein Attribut mit dem angegebenen lokalen Namen und Namespace-URI. (Hat das entfernte Attribut einen Standardwert, wird es sofort ersetzt.)

public:
 virtual void RemoveAttribute(System::String ^ localName, System::String ^ namespaceURI);
public virtual void RemoveAttribute (string localName, string namespaceURI);
public virtual void RemoveAttribute (string localName, string? namespaceURI);
abstract member RemoveAttribute : string * string -> unit
override this.RemoveAttribute : string * string -> unit
Public Overridable Sub RemoveAttribute (localName As String, namespaceURI As String)

Parameter

localName
String

Der lokale Name des zu entfernenden Attributs.

namespaceURI
String

Der Namespace-URI des zu entfernenden Attributs.

Ausnahmen

Der Knoten ist schreibgeschützt.

Beispiele

Im folgenden Beispiel wird ein Attribut aus einem Element entfernt.

#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->RemoveAttribute( "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.RemoveAttribute("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.RemoveAttribute("ISBN", "urn:samples")
    
    Console.WriteLine("Display the modified XML...")
    Console.WriteLine(doc.InnerXml)

  end sub
end class

Hinweise

Wenn das entfernte Attribut bekannt ist, dass ein Standardwert vorhanden ist, wird sofort ein Attribut angezeigt, das den Standardwert enthält und gegebenenfalls den entsprechenden Namespace-URI, den lokalen Namen und das Präfix enthält.

Gilt für