HasAttributes Property

XmlReader.HasAttributes Property

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Gets a value indicating whether the current node has any attributes.

Namespace:  System.Xml
Assembly:  System.Xml (in System.Xml.dll)

public virtual bool HasAttributes { get; }

Property Value

Type: System.Boolean
true if the current node has attributes; otherwise, false.



StringBuilder output = new StringBuilder();

String xmlString =
    @"<bookstore>
    <book genre='autobiography' publicationdate='1981-03-22' ISBN='1-861003-11-0'>
        <title>The Autobiography of Benjamin Franklin</title>
        <author>
            <first-name>Benjamin</first-name>
            <last-name>Franklin</last-name>
        </author>
        <price>8.99</price>
    </book>
</bookstore>";

// Create an XmlReader
using (XmlReader reader = XmlReader.Create(new StringReader(xmlString)))
{
    reader.ReadToFollowing("book");

    if (reader.HasAttributes)
    {
        output.Append("Attributes of <" + reader.Name + ">");
        for (int i = 0; i < reader.AttributeCount; i++)
        {
            reader.MoveToAttribute(i);
            output.Append(" " + reader.Name + "=" + reader.Value);
        }
        reader.MoveToElement(); // Moves the reader back to the element node.
    }

}

OutputTextBlock.Text = output.ToString();


Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft