XmlReader.HasAttributes-Eigenschaft
Ruft einen Wert ab, der angibt, ob der aktuelle Knoten über Attribute verfügt.
Namespace: System.Xml
Assembly: System.Xml (in system.xml.dll)
Syntax
'Declaration
Public Overridable ReadOnly Property HasAttributes As Boolean
'Usage
Dim instance As XmlReader
Dim value As Boolean
value = instance.HasAttributes
public virtual bool HasAttributes { get; }
public:
virtual property bool HasAttributes {
bool get ();
}
/** @property */
public boolean get_HasAttributes ()
public function get HasAttributes () : boolean
Eigenschaftenwert
true, wenn der aktuelle Knoten über Attribute verfügt, andernfalls false.
Beispiel
Im folgenden Beispiel werden alle Attribute für den aktuellen Knoten angezeigt.
If reader.HasAttributes Then
Console.WriteLine("Attributes of <" + reader.Name + ">")
While reader.MoveToNextAttribute()
Console.WriteLine(" {0}={1}", reader.Name, reader.Value)
End While
' Move the reader back to the element node.
reader.MoveToElement()
End If
if (reader.HasAttributes) {
Console.WriteLine("Attributes of <" + reader.Name + ">");
while (reader.MoveToNextAttribute()) {
Console.WriteLine(" {0}={1}", reader.Name, reader.Value);
}
// Move the reader back to the element node.
reader.MoveToElement();
}
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
XmlReader-Klasse
XmlReader-Member
System.Xml-Namespace