SAX parser

  • Thread starter Thread starter Kam
  • Start date Start date
Kam,

C#'s native XML parser doesn't support SAX. However, it does support a
model that is similar, which you can use. The class is the XmlReader class.
Check out the section of the .NET framework documentation titled "Comparing
XmlReader to SAX Reader", located at (watch for line wrap):

http://msdn.microsoft.com/library/d...e/html/cpconcomparingxmlreadertosaxreader.asp

If this doesn't suit your needs, then you can use the MSXML parser
through COM interop, which supports SAX.

Hope this helps.
 
Back
Top