Top "Xmldocument" questions

The original .NET type that represents an XML document.

XmlNode.SelectSingleNode syntax to search within a node in C#

I want to limit my search for a child node to be within the current node I am on. For …

c# xml xmldocument
How to Select XML Nodes with XML Namespaces from an XmlDocument?

my code attempts to grab data from the RSS feed of a website. It grabs the nodes fine, but when …

c# xml xmldocument xml-namespaces
How to update XML nodes with new values?

I have a xml inside my App_Data folder. I need to edit the values in nodes of that xml. …

c# asp.net xml xmldocument xmlnode
wcf return an XmlDocument?

I have a WCF service where Im building up a block of XML using an XmlWriter. Once complete I want …

c# xml wcf xmldocument
remove attribute if it exists from xmldocument

How to remove the attribute from XmlDocument if attribute exists in the document? Please help. I am using RemoveAttribute but …

c# xml xmldocument
How do I add a custom XmlDeclaration with XmlDocument/XmlDeclaration?

I would like to create a custom XmlDeclaration while using the XmlDocument/XmlDeclaration classes in c# .net 2 or 3. This is …

c# .net xml xmldocument
XmlDocument throwing "An error occurred while parsing EntityName"

I have a function where I am passing a string as params called filterXML which contains '&' in …

c# xml string xmldocument
get node value from string xml

I have this string XML string innerXml = @"<detail><WCFFaultExcepcion xmlns=""http://schemas.datacontract.org/2004/07/CIEL.DigiturnoMega.Entidades"" …

c# xmldocument
How to post XML document to HTTP with VB.Net

I'm looking for help with posting my XML document to a url in VB.NET. Here's what I have so …

vb.net webrequest xmldocument webresponse
Performance: XDocument versus XmlDocument

I have read a comparison between the two here. This is primarily a question of performance, relating to both memory …

.net xml performance linq-to-xml xmldocument