Top "Xmldocument" questions

The original .NET type that represents an XML document.

Name cannot begin with the '1' character, hexadecimal value 0x31. Line 2, position 2

While loading XML file in a C# application, I am getting Name cannot begin with the '1' character, hexadecimal …

c# xml xmldocument
XmlDocument::Save() appends the xml in file

I want to keep a single XmlDocument object in a class and let methods make changes to it and save …

c# .net xmldocument
Read First Node from XMLDocument

I receive message in XML string; that I load into XmlDocument; but second node is different every time; I have …

c# xml xmldocument
How to remove encoding="UTF-8" standalone="no" from xml Document object in Java

I want to create XML in Java. DocumentBuilderFactory dbfac = DocumentBuilderFactory.newInstance(); DocumentBuilder docBuilder; docBuilder = dbfac.newDocumentBuilder(); Document doc = docBuilder.newDocument(); …

java xml xmldocument
XElement to get all sub-element node names and values

I'm thinking of an approach something like this. Please let me know if this can actually work this way: For …

c# xmldocument xelement selectnodes
Convert XmlDocument object into an XmlNode object - C#?

How do I convert an XmlDocument to a XmlNode in C#? I need to send the entire XmlDocument object to …

c# xmldocument xmlnode
What is the easiest way to convert this XML document to my object?

I have an XMLDocument that i need to read in and convert into a set of objects. I have the …

c# xml converter xmldocument
How to select nodes where node name contains "mystring"

I need to get XmlNodeList where node name contains "mystring" XML <?xml version="1.0" encoding="utf-8"?> <root> &…

c# xpath c#-2.0 xmldocument
add a root element using xmldocument in C#.net

I need to create an XML file using an xmldocument object in C#. How can I add a root element …

c# xmldocument
XML - How to grab child nodes in single node and not whole document?

Been looking around for an answer and cant find anything - Im quite new so maybe Im not hitting up …

c# xml xmldocument xmlnode