XmlAttributeCollection.RemoveAll 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.
Rimuove tutti gli attributi dall'insieme.
public:
void RemoveAll();
public:
virtual void RemoveAll();
public void RemoveAll ();
public virtual void RemoveAll ();
member this.RemoveAll : unit -> unit
abstract member RemoveAll : unit -> unit
override this.RemoveAll : unit -> unit
Public Sub RemoveAll ()
Public Overridable Sub RemoveAll ()
Esempio
Nell'esempio seguente vengono rimossi tutti gli attributi dal documento.
#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>" );
//Create an attribute collection and remove all attributes
//from the collection.
XmlAttributeCollection^ attrColl = doc->DocumentElement->Attributes;
attrColl->RemoveAll();
Console::WriteLine( "Display the modified XML...\r\n" );
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' ISBN='1-861001-57-5'>" +
"<title>Pride And Prejudice</title>" +
"</book>");
//Create an attribute collection and remove all attributes
//from the collection.
XmlAttributeCollection attrColl = doc.DocumentElement.Attributes;
attrColl.RemoveAll();
Console.WriteLine("Display the modified XML...\r\n");
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' ISBN='1-861001-57-5'>" & _
"<title>Pride And Prejudice</title>" & _
"</book>")
'Create an attribute collection and remove an attribute
'from the collection.
Dim attrColl as XmlAttributeCollection = doc.DocumentElement.Attributes
attrColl.RemoveAll()
Console.WriteLine("Display the modified XML...")
Console.WriteLine(doc.OuterXml)
end sub
end class
Commenti
Questo metodo è un'estensione Microsoft al modello a oggetti document (DOM).
Si applica a
Collabora con noi su GitHub
L'origine di questo contenuto è disponibile in GitHub, in cui è anche possibile creare ed esaminare i problemi e le richieste pull. Per ulteriori informazioni, vedere la guida per i collaboratori.