XmlTextReader.MoveToFirstAttribute-Methode
Wechselt zum ersten Attribut.
Namespace: System.Xml
Assembly: System.Xml (in system.xml.dll)
Syntax
'Declaration
Public Overrides Function MoveToFirstAttribute As Boolean
'Usage
Dim instance As XmlTextReader
Dim returnValue As Boolean
returnValue = instance.MoveToFirstAttribute
public override bool MoveToFirstAttribute ()
public:
virtual bool MoveToFirstAttribute () override
public boolean MoveToFirstAttribute ()
public override function MoveToFirstAttribute () : boolean
Rückgabewert
true, wenn ein Attribut vorhanden ist (der Reader wechselt zum ersten Attribut), andernfalls false (die Position des Readers bleibt unverändert).
Hinweise
Hinweis
Die empfohlene Vorgehensweise für die Version Microsoft .NET Framework, Version 2.0 besteht darin, mithilfe der System.Xml.XmlReader.Create-Methode XmlReader-Instanzen zu erstellen. So können Sie die neuen Features dieser Version in vollem Umfang nutzen. Weitere Informationen finden Sie unter Erstellen von XML-Readern.
Beispiel
Im folgenden Beispiel wird der Wert des ersten Atttributs des Stammknotens abgerufen.
Imports System
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 'Main
End Class 'Sample
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
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;
int main()
{
XmlTextReader^ reader = nullptr;
try
{
//Load the reader with the XML file.
reader = gcnew XmlTextReader( "attrs.xml" );
//Read the genre attribute.
reader->MoveToContent();
reader->MoveToFirstAttribute();
String^ genre = reader->Value;
Console::WriteLine( "The genre value: {0}", genre );
}
finally
{
if ( reader != nullptr )
reader->Close();
}
}
import System.*;
import System.IO.*;
import System.Xml.*;
public class Sample
{
public static void main(String[] args)
{
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.get_Value();
Console.WriteLine("The genre value: " + genre);
}
finally {
if ( reader != null ) {
reader.Close();
}
}
} //main
} // End class Sample
Im Beispiel wird die Datei attrs.xml als Eingabe verwendet.
<book genre='novel' ISBN='1-861003-78' pubdate='1987'>
</book>
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0
Siehe auch
Referenz
XmlTextReader-Klasse
XmlTextReader-Member
System.Xml-Namespace