FastInfosetReader.AttributeCount
AttributeCount()
Type:
Number.
Obtains a number of attributes from the last read XML node. Since only XML element has attributes, access to them is only available during reading a node of the following type
StartElement.
Thin client, server, thick client, external connection, Mobile application (client), Mobile application (server).
Reader.OpenFile("c:/docs/data.xml"); While Reader.Read() Do If Reader.AttributeCount() > 0 Then While Reader.ReadAttribute() Do // process the attribute EndDo EndIf EndDo
|