Tagged Questions

1
vote
1answer
302 views

removing xmlns in XElement

Hello Folks, I am parsing a XML string in XElement.Parse("somestring") and insert it into another XElement using add method. so, i want to remove the default utf encoding and xmln …
0
votes
1answer
20 views

XElement.Descendants(”Node”) not behaving as expected, returns multiple levels of Descendants

Hello, I have an issue. I have hierarchical XML data such as: <Tree> <Node Text="Stuff" ItemGUID="064a9bf0-0594-47f8-87be-88dd73763c77" > <Node Text="Food" I …
1
vote
3answers
27 views

Is LINQ to XML’s XElement ordered?

When I use LINQ to XML, is the order of the elements and attributes written out to text guaranteed to be the same order as how I added the XElement and XAttribute objects? Similar …
10
votes
10answers
2k views

Best way to get InnerXml of an XElement?

What's the best way to get the contents of the mixed "body" element in the code below? The element might contain either XHTML or text, but I just want its contents in string form. …
0
votes
2answers
91 views

How can I write XML output?

How can I see the XML output of following C# code? I can see that it uses XElement, but where I can locate the XML file or the output? private void Form1_Load(object sender, Event …
0
votes
2answers
113 views

Deserializing using XElement

I had to write my own deserializer, because XmlSerializer and DataContractSerializer aren't good for my needs. So, here's the base of my deserializer: static BaseElement Parse …
0
votes
3answers
119 views

Removing XElements in a foreach loop

So, I have a bug to remove foreach (XElement x in items.Elements("x")) { XElement result = webservice.method(x); if (/*condition based on values in result*/) { …
0
votes
6answers
354 views

parsing XML with ampersand

I have a string which contains XML, I just want to parse into Xelement, but it has an ampersand. I still have problem to parse it with HtmlDecode. Any suggestion? string test = " …
0
votes
2answers
238 views

how to add(or ignore) XML namespace when using XElement.Load

I am creating XML using Linq to XML and C#. It all works great except when I need to manually add in a row in the XML. This row is only added if I have a value to pass through to i …
0
votes
2answers
71 views

XElement vs Dcitionary

Hi All, I need advice. I have application that imports 10,000 rows containing name & address from a text file into XElements that are subsequently added to a synchronized queu …
0
votes
1answer
46 views

How to add an existing Xml string into a XElement

How to add an existing Xml string into a XElement? This code var doc = new XDocument( new XElement("results", "<result>...</result>") ); …
0
votes
1answer
123 views

How can a WCF XElement Response include the XML Declaration?

I have a WCF service that is returning an XElement, this is working fine however I would like it to include the XML Declaration in the response: <?xml version="1.0" encoding="u …
1
vote
1answer
223 views

XElement default namespace on attributes provides unexpected behaviour

I am having trouble creating an XML document that contains a default namespace and a named namespace, hard to explain easier to just show what I am trying to produce... <Root x …
0
votes
3answers
253 views

What is an appropriate XML type for web service?

Current Implementation Sql Server 2005 Database with a table called messages with a column called MessageXml of type xml. C# Library project with a Linq to Sql class that generat …
0
votes
1answer
59 views

Inserting records into an XML table with a unique key

Hi, Maybe I'm just spoiled by SQL, but is there some cool LINQ way to insert a new record into an "XML table" and have the indexed ID update automatically (or at least semi-automa …

1 2 3 next
15 30 50 per page