Top "Xmlreader" questions

xmlreader - Represents a reader that provides fast, noncached, forward-only access to XML data.

XmlReader ReadStartElement causes XmlException

I'm writing a file reader using the XmlReader in a Silverlight project. However, I'm getting some errors (specifically around the …

c# .net silverlight xmlreader xmlexception
PHP open gzipped XML

I am struggling to read gzipped xml files in php. I did succeed in reading normal xml files, using XMLReader() …

php xml gzip xmlreader
xmlreader newline \n instead of \r\n

When I use XmlReader.ReadOuterXml(), elements are separated by \n instead of \r\n. So, for example, if I have …

.net newline xmlreader
XmlElement.SelectNodes(..) - finds nothing.. Help?

Sorry to bother you with such a simple question, but I'm stuck here since an hour: I have an xml …

c# .net xml xmlreader
Performance: XmlSerializer vs XmlReader vs XmlDocument vs XDocument

I'm working on a little web project and would like to read/write to an XML file. Performance is my …

.net linq-to-xml xmldocument xmlserializer xmlreader
Read XElement from XmlReader

I'm playing around with parsing an XMPP XML stream. The tricky thing about the XML stream is that the start …

.net xmpp xmlreader
convert XmlReader to XmlTextReader

How do you convert XmlReader to XmlTextReader? Code Snippet: XmlTextReader reader = XmlTextReader.Create(pomfile.FullName); Here's the Build error I …

c# xmlreader xmltextreader