Writing XML SAX Parsers in C#
This project gives you a head start on writing XML parsers in C#. The important namespace to achieve our goal would be System.Xml. Though you might find it strange, unlike other languages/class libraries, there are no direct functions such as startElement and endElement at your disposal, or to come to your rescue. You will have to manage this on your own. So, let's look at this important block of code.
void ParseURL(string strUrl)
{
try
{
XmlTextReader reader = new XmlTextReader(strUrl);
while (reader.Read())
{
switch (reader.NodeType)
{
case XmlNodeType.Element:
Hashtable attributes = new Hashtable();
string strURI= reader.NamespaceURI;
string strName= reader.Name;
if (reader.HasAttributes)
{
for (int i = 0; i < reader.AttributeCount; i++)
{
reader.MoveToAttribute(i);
attributes.Add(reader.Name,reader.Value);
}
}
StartElement(strURI,strName,strName,attributes);
break;
//
//you can handle other cases here
//
//case XmlNodeType.EndElement:
// Todo
//case XmlNodeType.Text:
// Todo
default:
break;
}
}
}
catch (XmlException e)
{
Console.WriteLine("error occured: " + e.Message);
}
}
As you can see, the main class here is XmlTextReader. XmlTextReader provides forward-only, read-only access to a stream of XML data. The current node refers to the node on which the reader is positioned. The reader is advanced by using any of the read methods and properties that reflect the value of the current node. Note that we cache the element name before we move to the attributes.
The NodeType property of XmlTextReader gets the type of the current node. Accordingly, we process the node and call necessary functions on it.
You can forward me your comments at lparam@hotmail.com.

Comments
The title of this article is incorrect
Posted by Jeff Kesselman on 03/30/2012 02:40pmSAX is a very specific API. XmlTextReader is NOT a SAX implementation. Its is very different (and a lot more complex).
Replywhat about this fragment:
Posted by tommy1995 on 03/15/2006 03:32amto parse this fragment using XmlTextReader, only XmlNodeType.Element occurs, there's no XmlNodeType.EndElement occurs!!!
Reply