Returns the name of the attribute at the specified index. Note that the order of elements can change.
GetValue (IndexAsInt) AsString
Returns the value of the attribute at the specified index. Note that the order of elements can change.
GetValue2 (UriAsString, NameAsString) AsString
Returns the value of the attribute with the following Uri and Name. Pass an empty string as the Uri if namespaces are not used. Returns an empty string if no such attribute was found.
A parser that sequentially reads a stream and raises events at the beginning and end of each element. The StartElement includes the following parameters: Uri - Namespace Uri, or empty string if there is no namespace. Name - The element name. Attributes - An Attributes object holding the element's attributes.
The EndElement includes the following parameters: Uri - Namespace Uri, or empty string if there is no namespace. Name - The element name. Text - The element text (if such exists).
Events:
StartElement (Uri As String, Name As String, Attributes As Attributes) EndElement (Uri As String, Name As String, Text As StringBuilder)