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)