xmltextreader
How to parse and update xml file using xmltextreader or xmlreader
Hi i have the following code to read the xml file and change the value of particular node ,but i want to do the same using xmltextreader or xmlreader, i am trying to avoid the statement doc.Save(Syste[详细]
2023-04-05 04:33 分类:问答How to overwrite nodes in an xml file?
I have the following XML file: <WindowEntries> <WindowEntry> <Name>maduranga</Name>[详细]
2023-03-29 03:45 分类:问答How to read XML string from DB into XMLTextReader?
Ihave an issue with reading an XML string into XMLTextReader.. I\'m querying the a DB and getting a DataSet back.[详细]
2023-03-29 02:47 分类:问答Reading a xml file multithreaded
I\'ve searched a lot but I couldn\'t find a propper solution for my problem. I wrote a xml file containing all episode information of a TV-Show. It\'s 38 kb and contains attributes and strings for abo[详细]
2023-03-15 15:22 分类:问答XmlTextReader and embedded resource DTD
I\'m trying to create a single EXE with no dependencies (spare the .NET Framework :-). The p开发者_JAVA技巧rogram involves parsing a bunch of XML docs (using XmlTextReader) that share the same DTD. Th[详细]
2023-02-28 04:33 分类:问答XmlTextReader passes end of XML document without recognizing
I\'m trying to create a simple App which reads a XML using SAX (XmlTextReader) from a stream which does not only contain the XML but also other data such as binary blobs and text. The structure of the[详细]
2023-02-07 01:55 分类:问答How to read a xml string into XMLTextReader type
I have an XML string. I need to convert this string into XMLTextReader(System.Xml.XMLTextReader) type in dotnet.[详细]
2023-02-02 06:03 分类:问答XMLTextReader not reading an element content
static void ReadXml() { string a= null; double b= 0; double c= 0; XmlReader xmlReader = new XmlReader(\"Testxml.xml\");[详细]
2023-01-19 22:45 分类:问答Can XmlTextReader tell the difference between <tag> and <tag />
I am reading an XML file using an XMLTextReader. Is there a way to tell the difference between a start tag (lik开发者_如何学Goe <tag>) and a self-terminating tag (like <tag />)If you mean[详细]
2023-01-04 22:38 分类:问答Name cannot begin with the ' ' character
I\'m parsing some XML in C#. I\'m getting it from a database, and so converting it to a MemoryStream before reading it with an XmlTextReader. The problem is that I get this error: Name cannot begin wi[详细]
2022-12-20 16:44 分类:问答