Top "Xmldocument" questions

The original .NET type that represents an XML document.

Using XPath to parse an XML document

Lets say I have the following xml (a quick example) <rows> <row> <name>one&…

c# xpath xmldocument
Read typed objects from XML using known XSD

I have the following (as an example) XML file and XSD. <?xml version="1.0" encoding="utf-8" ?> <foo> &…

c# xml compact-framework xsd xmldocument
From XmlDocument To XmlReader .Net

After an advice from a user that answered to my question I'm tring to convert my XmlDocument code to XmlReader …

.net xmldocument xmlreader
Looping through XML document

My XML file structure looks like this: <SalaryDetails> <Employee> <Name>George Dsouza</Name&…

c# xml xmldocument
Can't get XmlDocument.SelectNodes to retrieve any of my nodes?

I'm trying to parse an XML document. The document in question is an AppxManifest file. An example document looks like …

c# .net xml xpath xmldocument
Serialize object to XmlDocument

In order to return useful information in SoapException.Detail for an asmx web service, I took an idea from WCF …

c# xml-serialization xmldocument
Search for nodes by name in XmlDocument

I'm trying to find a node by name in an XmlDocument with the following code: private XmlNode FindNode(XmlNodeList list, …

c# xmldocument
C# extracting data from XML

I'm trying to read weather data from XML in a URL. The XML looks like this: <weatherdata> <…

c# .net xml xml-parsing xmldocument
Reading XML with an "&" into C# XMLDocument Object

I have inherited a poorly written web application that seems to have errors when it tries to read in an …

c# .net asp.net xml xmldocument
C# : the close method of Xml.Load(file)

I have written some code that loads an XML document using an XmlDocument object so as to count it's nodes. …

c# xml memory memory-management xmldocument