Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

XmlTextReader::AttributeCount Property

 

Gets the number of attributes on the current node.

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

public:
property int AttributeCount {
	virtual int get() override;
}

Property Value

Type: System::Int32

The number of attributes on the current node.

System_CAPS_noteNote

Starting with the .NET Framework 2.0, we recommend that you create XmlReader instances by using the XmlReader::Create method to take advantage of new functionality.

This property is relevant to Element, DocumentType and XmlDeclaration nodes only. (Other node types do not have attributes.)

The following example displays all attributes on the current node.

public:
   void DisplayAttributes( XmlReader^ reader )
   {
      if ( reader->HasAttributes )
      {
         Console::WriteLine( "Attributes of <{0}>", reader->Name );
         for ( int i = 0; i < reader->AttributeCount; i++ )
         {
            reader->MoveToAttribute( i );
            Console::Write( " {0}={1}", reader->Name, reader->Value );

         }
         reader->MoveToElement(); //Moves the reader back to the element node.
      }
   }

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft