XmlTextReader.MoveToFirstAttribute 方法

定义

移动到第一个属性。

public:
 override bool MoveToFirstAttribute();
public override bool MoveToFirstAttribute();
override this.MoveToFirstAttribute : unit -> bool
Public Overrides Function MoveToFirstAttribute () As Boolean

返回

true 如果存在属性(读取器移动到第一个属性);否则, false (读取器的位置不会更改)。

示例

以下示例获取根节点的第一个属性的值。

using System;
using System.IO;
using System.Xml;

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

    try
    {
       //Load the reader with the XML file.
       reader = new XmlTextReader("attrs.xml");

       //Read the genre attribute.
       reader.MoveToContent();
       reader.MoveToFirstAttribute();
       string genre=reader.Value;
       Console.WriteLine("The genre value: " + genre);
     }
     finally
     {
        if (reader != null)
          reader.Close();
      }
  }
} // End class
Imports System.IO
Imports System.Xml

Public Class Sample
   
   Public Shared Sub Main()
      Dim reader As XmlTextReader = Nothing
      
      Try
         'Load the reader with the XML file.
         reader = New XmlTextReader("attrs.xml")
         
         'Read the genre attribute.
         reader.MoveToContent()
         reader.MoveToFirstAttribute()
         Dim genre As String = reader.Value
         Console.WriteLine("The genre value: " & genre)
      
      Finally
         If Not (reader Is Nothing) Then
            reader.Close()
         End If
      End Try
   End Sub
End Class

该示例使用该文件 attrs.xml作为输入。


<book genre='novel' ISBN='1-861003-78' pubdate='1987'>
</book>

注解

注释

建议您使用XmlReader方法创建XmlReader.Create实例,以利用新功能。

适用于

另请参阅