次の方法で共有


XmlNodeReader.MoveToAttribute メソッド

指定した属性に移動します。

オーバーロードの一覧

指定したインデックスを持つ属性に移動します。

.NET Compact Framework でもサポート。

[Visual Basic] Overloads Overrides Public Sub MoveToAttribute(Integer)

[C#] public override void MoveToAttribute(int);

[C++] public: void MoveToAttribute(int);

[JScript] public override function MoveToAttribute(int);

指定した名前を持つ属性へ移動します。

.NET Compact Framework でもサポート。

[Visual Basic] Overloads Overrides Public Function MoveToAttribute(String) As Boolean

[C#] public override bool MoveToAttribute(string);

[C++] public: bool MoveToAttribute(String*);

[JScript] public override function MoveToAttribute(String) : Boolean;

指定したローカル名および名前空間 URI の属性に移動します。

.NET Compact Framework でもサポート。

[Visual Basic] Overloads Overrides Public Function MoveToAttribute(String, String) As Boolean

[C#] public override bool MoveToAttribute(string, string);

[C++] public: bool MoveToAttribute(String*, String*);

[JScript] public override function MoveToAttribute(String, String) : Boolean;

使用例

[Visual Basic, C#, C++] ルート ノードのすべての属性を読み取る例を次に示します。

[Visual Basic, C#, C++] メモ   ここでは、MoveToAttribute のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。

 
Option Strict
Option Explicit

Imports System
Imports System.IO
Imports System.Xml

Public Class Sample
    
    Public Shared Sub Main()
        Dim reader As XmlNodeReader = Nothing
        Try
            'Create and load the XML document.
            Dim doc As New XmlDocument()
            doc.LoadXml("<book genre='novel' ISBN='1-861003-78' publicationdate='1987'> " & _
                       "</book>")
            
            'Load the XmlNodeReader 
            reader = New XmlNodeReader(doc)
            
            'Read the attributes on the root element.
            reader.MoveToContent()
            If reader.HasAttributes Then
                Dim i As Integer
                For i = 0 To reader.AttributeCount - 1
                    reader.MoveToAttribute(i)
                    Console.WriteLine("{0} = {1}", reader.Name, reader.Value)
                Next i
                'Return the reader to the book element.
                reader.MoveToElement()
            End If
        
        Finally
            If Not (reader Is Nothing) Then
                reader.Close()
            End If
        End Try
    End Sub 'Main 
End Class 'Sample

[C#] 
using System;
using System.IO;
using System.Xml;

public class Sample 
{
  public static void Main()
  {
    XmlNodeReader reader = null;

    try
    {
       //Create and load the XML document.
       XmlDocument doc = new XmlDocument();
       doc.LoadXml("<book genre='novel' ISBN='1-861003-78' publicationdate='1987'> " +
                   "</book>"); 

       //Load the XmlNodeReader 
       reader = new XmlNodeReader(doc);
  
       //Read the attributes on the root element.
       reader.MoveToContent();
       if (reader.HasAttributes){
         for (int i=0; i<reader.AttributeCount; i++){
            reader.MoveToAttribute(i);
            Console.WriteLine("{0} = {1}", reader.Name, reader.Value);
         }
         //Return the reader to the book element.
         reader.MoveToElement();
       }

     } 

     finally 
     {
        if (reader != null)
          reader.Close();
      }
  }
  
} // End class

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

int main()
{
   XmlNodeReader* reader = 0;

   try
   {
      //Create and load the XML document.
      XmlDocument* doc = new XmlDocument();
      doc->LoadXml(S"<book genre='novel' ISBN='1-861003-78' publicationdate='1987'> " 
         S"</book>"); 

      //Load the XmlNodeReader 
      reader = new XmlNodeReader(doc);

      //Read the attributes on the root element.
      reader->MoveToContent();
      if (reader->HasAttributes){
         for (int i=0; i<reader->AttributeCount; i++){
            reader->MoveToAttribute(i);
            Console::WriteLine(S"{0} = {1}",reader->Name,reader->Value);
         }
         //Return the reader to the book element.
         reader->MoveToElement();
      }

   } 

   __finally 
   {
      if (reader != 0)
         reader->Close();
   }
}

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

参照

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