C# and SAX

  • Thread starter Thread starter Jeremy McPeak
  • Start date Start date
J

Jeremy McPeak

I have searched for information on C# and SAX, and have yet to find
anything. Is there any documentation on this subject?
 
Jeremy McPeak said:
I have searched for information on C# and SAX, and have yet to find
anything. Is there any documentation on this subject?

As others have said, .NET doesn't offer a SAX parser directly. However,
it's not that hard to write something that generates SAX events from an
XmlReader.
 
Thanks for the info. You would think that .NET would include a SAX parser
(most languages do). I have looked, somewhat, at the XmlReader
documentation, so I will probably look at that more.

Thanks again,

Jeremy McPeak
 
..NET uses a proprietary class called XmlReader instead of SAX.
Take a look at "SAX in .NET" in this article
http://msdn.microsoft.com/asp.net/using/migrating/jspmig/phase1/xml/default.aspx

Willy.

Jeremy McPeak wrote:
|| Thanks for the info. You would think that .NET would include a SAX
|| parser (most languages do). I have looked, somewhat, at the
|| XmlReader documentation, so I will probably look at that more.
||
|| Thanks again,
||
|| Jeremy McPeak
||
||
|| |||| I have searched for information on C# and SAX, and have yet to find
|||| anything. Is there any documentation on this subject?
|||
||| As others have said, .NET doesn't offer a SAX parser directly.
||| However, it's not that hard to write something that generates SAX
||| events from an XmlReader.
|||
||| --
||| Jon Skeet - <[email protected]>
||| http://www.pobox.com/~skeet/
||| If replying to the group, please do not mail me too
 
Back
Top