XmlElement.RemoveAll 方法   
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
删除当前节点的所有指定特性和子级。 不删除默认属性。
public:
 override void RemoveAll();
	public override void RemoveAll ();
	override this.RemoveAll : unit -> unit
	Public Overrides Sub RemoveAll ()
	示例
以下示例从根元素中删除所有属性和子节点。
#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>" );
   
   // Remove all attributes and child nodes from the book element.
   XmlElement^ root = doc->DocumentElement;
   root->RemoveAll();
   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>");
    // Remove all attributes and child nodes from the book element.
    XmlElement root = doc.DocumentElement;
    root.RemoveAll();
    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 all attributes and child nodes from the book element.
    root.RemoveAll()
    Console.WriteLine("Display the modified XML...")
    Console.WriteLine(doc.InnerXml)
  end sub
end class