XmlAttributeCollection.RemoveAll メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
コレクションからすべての属性を削除します。
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 ()
例
次の例では、ドキュメントからすべての属性を削除します。
#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
注釈
このメソッドは、ドキュメント オブジェクト モデル (DOM) のMicrosoft拡張機能です。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET