次の方法で共有


XmlAttributeCollection.ItemOf プロパティ

指定した名前またはインデックスの属性を取得します。

[C#] C# では、このプロパティは XmlAttributeCollection クラスのインデクサになります。

オーバーロードの一覧

指定したインデックスの属性を取得します。

[Visual Basic] Overloads Public Overridable Default ReadOnly Property ItemOf(Integer) As XmlAttribute

[C#] public virtual XmlAttribute this[int] {get;}

[C++] public: __property virtual XmlAttribute* get_ItemOf(int);

[JScript] XmlAttributeCollection.ItemOf (int)

指定した名前の属性を取得します。

[Visual Basic] Overloads Public Overridable Default ReadOnly Property ItemOf(String) As XmlAttribute

[C#] public virtual XmlAttribute this[string] {get;}

[C++] public: __property virtual XmlAttribute* get_ItemOf(String*);

[JScript] XmlAttributeCollection.ItemOf (String)

指定したローカル名および名前空間 URI の属性を取得します。

[Visual Basic] Overloads Public Overridable Default ReadOnly Property ItemOf(String, String) As XmlAttribute

[C#] public virtual XmlAttribute this[string, string] {get;}

[C++] public: __property virtual XmlAttribute* get_ItemOf(String*, String*);

[JScript] XmlAttributeCollection.ItemOf (String, String)

使用例

[Visual Basic, C#, C++] ドキュメントから属性を削除する例を次に示します。

[Visual Basic, C#, C++] メモ   ここでは、ItemOf プロパティ (XmlAttributeCollection インデクサ) のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。

 
Imports System
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.Remove(attrColl.ItemOf("genre"))

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

  end sub
end class

[C#] 
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 an attribute
    //from the collection.
    XmlAttributeCollection attrColl = doc.DocumentElement.Attributes;
    attrColl.Remove(attrColl["genre"]);

    Console.WriteLine("Display the modified XML...\r\n");
    Console.WriteLine(doc.OuterXml);  
  }
}

[C++] 
#using <mscorlib.dll>
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;

int main()
{
    XmlDocument* doc = new XmlDocument();
    doc->LoadXml(S"<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.
    XmlAttributeCollection* attrColl = doc->DocumentElement->Attributes;
    attrColl->Remove(attrColl->ItemOf[S"genre"]);

    Console::WriteLine(S"Display the modified XML...\r\n");
    Console::WriteLine(doc->OuterXml);  
}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

参照

XmlAttributeCollection クラス | XmlAttributeCollection メンバ | System.Xml 名前空間