Tagged Questions

XElement is part of System.Xml.Linq in .NET Framework. This class represents an XML element, the fundamental XML construct.

learn more… | top users | synonyms

30
votes
12answers
15k 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. The XmlElement ...
9
votes
3answers
5k views

Children of XElement

How do I get just the children of an XElement? I am currently using the XElement.Descendants() function, which returns all levels of XElements, rather than jus the child nodes. What I would really ...
9
votes
7answers
6k views

Get the XPath to an XElement?

I've got an XElement deep within a document. Given the XElement (and XDocument?), is there an extension method to get its full (i.e. absolute, e.g. /root/item/element/child) XPath? E.g. ...
7
votes
1answer
991 views

How to remove whitespace from XElement object created from XElement.ReadFrom(XmlReader)

I am parsing a large xml file. So I am using an XmlReader in combination with XElement instead of XElement.Load(). I have created as XElement object from XmlReader as shown below and here. static ...
6
votes
1answer
440 views

Linq-to-XML XElement.Remove() leaves unwanted whitespace

I have an XDocument that I create from a byte array (received over tcp/ip). I then search for specific xml nodes (XElements) and after retrieving the value 'pop' it off of the Xdocument by calling ...
6
votes
3answers
4k views

How to use XPath with XElement or LINQ?

Consider the following XML: <response> <status_code>200</status_code> <status_txt>OK</status_txt> <data> <url>http://bit.ly/b47LVi</url> ...
6
votes
3answers
2k views

XElement value in C#

How to get a value of XElement without getting child elements? An example: <?xml version="1.0" ?> <someNode> someValue <child>1</child> ...
5
votes
7answers
4k 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 = " ...
5
votes
2answers
3k views

Creating XML with namespaces and schemas from an XElement

A longwinded question - please bear with me! I want to programatically create an XML document with namespaces and schemas. Something like <myroot xmlns="http://www.someurl.com/ns/myroot" ...
4
votes
2answers
180 views

Xelement.XPathSelectElement

I have the following XPath String "(//DEAL_SETS/DEAL_SET/DEALS/DEAL/PARTIES/PARTY[ROLES/ROLE/ ROLE_DETAIL/PartyRoleType='Borrower']) ...
4
votes
2answers
122 views

Is XElement's add operation Thread Safe?

Is it safe to Add child elements to an XElement via its ADD method in a parallel way (as in a parallel foreach)? Thanks!
4
votes
1answer
495 views

StyleCop happy creation of Xml using XDocument / XElement / XAttribute

I like to create xml using the following formatting: XDocument xml = new XDocument( new XElement("Root", new XElement("A", new XAttribute("X", xValue), new XAttribute("Y", ...
4
votes
2answers
114 views

Given an XElement, how do I retrieve a reference to another relative XElement/Xattribute given an XPath?

Given the following XML: <SomeXML> <Element1> <Element2 Attribute3="Value4" /> </Element1 </SomeXML> ... and an XElement reference to 'SomeElement' and an ...
4
votes
3answers
308 views

Select more then one node from XML using LINQ

I have such XML <root> <content> .... </content> <index> .... </index> <keywords> .... </keywords> ...
4
votes
3answers
3k 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*/) { x.Remove(); } } ...
4
votes
3answers
2k views

Returning an XElement from a web service

Is it possible to return an XElement from a webservice (in C#/asp.net)? Try a simple web service that returns an XElement: [WebMethod] public XElement DoItXElement() { XElement xe = new ...
3
votes
1answer
57 views

xElement Linq Creating List

I have created new class to read the data from xml file. I have declared class like public class Validations { public string id { get; set; } public List<string> lhsList { ...
3
votes
2answers
148 views

Index of Child XElement

Given an XElement is there a way to find out that element's index within the parent container? I know there must be but I just can't figure it out! Thanks!
3
votes
1answer
83 views

creating a “join” to update one XElement from another XElement

I have an XElement, called "XUsers", that will contain XML which looks like this: <users> <user id="12345" name="Bob Smith" /> <user id="67890" name="Jamal Stevens" /> ...
3
votes
1answer
101 views

Elegant way to deal with null references in chained XElement axis methods

Given something like this: var results = theElement.Element("Blah").Element("Whatever").Elements("Something"); Is there an elegant way to deal with a null Blah or Whatever element so results is ...
3
votes
1answer
651 views

c# how to read xml attributes with xelement

I have a XML with this string: <media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-tMQm4zsM-Yg/TdFEfG2y7GI/AAAAAAAAAT0/XGyQ8vFdVwY/s72-c/moorea-view.jpg" ...
3
votes
1answer
77 views

Is there an XElement equivalent to XmlWriter.WriteRaw?

I'm converting some code that currently uses an XmlWriter to create a document to instead return an XElement of the content. So far, I'm enjoying structuring the code in a way that mimics the ...
3
votes
1answer
136 views

Preserve certain nodes when using LINQ to XML

I am having difficulty preserving certain nodes (in this case <b>) when parsing XML with LINQ to XML. I first grab a node with the following LINQ query... IEnumerable<XElement> node = ...
3
votes
1answer
315 views

DataContractSerializer not deserializing all variables

I'm trying to deserialize some xml without having the original class that was used to create the object in xml. The class is called ComOpcClientConfiguration. It's succesfully setting the ServerUrl ...
3
votes
2answers
150 views

Is there a way to create an immutable (read-only) XDocument?

I have an API that returns XElement-s, and I want the document behind those XElement-s to be immutable (read-only). I need it for: 1) Not to give devs an ability to change it accidentally :) 2) ...
3
votes
1answer
385 views

How do I search just the children of an XDocument, rather than all of its descendants?

I can't seem to find anything other than XDocument.Descendants () in the documentation. Is there any way to do this?
3
votes
2answers
4k 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 it, otherwise I just ...
3
votes
1answer
710 views

Want to return the entire contents of an XElement as a string [closed]

I'm a newbie to LINQ in C# and am using it to read in and work with XML files. I'm able to navigate up and down my elements, but what I want for some elements is to return the entire contents as a ...
2
votes
1answer
79 views

XElement.Remove (XNode.Remove) doesn't work

I'm trying to remove individual nodes from their parent, I tried the Remove method but it doesn't seem to be working. How is this done? Is this a bug or what? Sub Main() Dim xml = <?xml ...
2
votes
0answers
256 views

Can't get XPathSelectElements to work with XElement

I am creating an in-memory Xml tree using XElement. Here is a sample of my xml: <Curve> <Function>createCurve</Function> <Parameters> <Input> ...
2
votes
4answers
246 views

C#: How to get the name (with prefix) from XElement as string?

This might be duplicate since my question seems so trivial, but I haven't been able to find the answer here on stackoverflow.com. I have an XElement with data like this: <abc:MyElement>My ...
2
votes
1answer
169 views

XElement & UTF-8 Issue

I have a .NET Web Service(.asmx, not .svc) that accepts a string via HTTP POST. The strings it accepts are xml infosets I then parse via XElement.Parse. Once parsed into an XElement instance, I add a ...
2
votes
3answers
499 views

Indexed access to XElement‘s child nodes

I am parsing an XML document using LINQ to XML and XDocument. Is there a way for a XElement/XContainer to get a child node by the index (in document order)? So that I can get the nth node of the ...
2
votes
2answers
407 views

XElement NullReferenceException

I have the following code. XElement opCoOptOff = doc.Descendants(ns + "OpCoOptOff").FirstOrDefault(); String opCo = opCoOptOff.Element(ns + "strOpCo").Value; Now if the element I return is null, ...
2
votes
3answers
297 views

XElement wont return any media:content / xmlns:media breaks XElement

Here is my sample xml: <rss version='2.0' xmlns:media='http://search.yahoo.com/mrss/'> <channel> <title>Title of RSS feed</title> <link>LINK</link> ...
2
votes
1answer
374 views

XElement fails to load file with accented characters

I have a rather curious problem, using the XElement load method to load in a html document (which is well formed checked with HTML Tidy), which work absolutely perfectly for English documents, however ...
2
votes
2answers
495 views

Data bind ObservableCollection<XElement> to a ListBox?

I'm developing a Silverlight application, and want to set the ItemsSource of a ListBox to ObeservableCollection<XElement> and still be able to use the Binding Path=Element[name].Value syntax to ...
2
votes
1answer
73 views

How do I load an XML formatted string into an XElement

I want to pass a varying number of parameters between two objects. I have a method on the receiving object that accepts a single string parameter. The sending object will be sending a string ...
2
votes
3answers
2k views

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 Sample XML: <Root> <Node> <SubEl1>abc</SubEl1> ...
2
votes
4answers
1k views

How to get XElement's value and not value of all child-nodes?

Sample xml: <parent> <child>test1</child> <child>test2</child> </parent> If I look for parent.Value where parent is XElement, I get "test1test2". What I am ...
2
votes
3answers
335 views

Build XML Dynamically using c#

I have to create an XML file dynamically based on the user input. Here is what I came up with and I am struck up with two issues. if there is a collection of same element (MaxOccurs = 10) (For ...
2
votes
1answer
314 views

Fluent NHibernate and XML columns

I'm building a new site from scratch and am considering using Fluent NHibernate for my ORM. I think it'll handle everything easily except, possibly, my XML columns. I've never built a site with ...
2
votes
1answer
332 views

How to dynamically set local XML namespace?

I have several xml namespaces that expose the same schema. I want to use a function that dynamically accepts a namespace and applies the attributes or the properties according to the specified ...
2
votes
3answers
1k views

Convert IEnumerable<XElement> to XElement

The return type of my query is IEnumerable<XElement>. how can i convert the resultant data to XElement type? is it possible? could some body help me to understand this. var resQ = from e in ...
2
votes
5answers
1k views

Converting the children of XElement to string [closed]

Possible Duplicate: Best way to get InnerXml of an XElement? I am using an XElement to hold a block of HTML serverside. I would like to convert the children of that XElement into a string, ...
2
votes
2answers
531 views

How to read from an XmlReader without moving it forwards

hey guys, I've got this scenario: while (reader.Read()) { if (reader.NodeType == XmlNodeType.Element && reader.Name == itemElementName) { XElement item = null; try ...
2
votes
1answer
328 views

Insert XElements using LINQ Select?

I have a source piece of xml into which I want to insert multiple elements which are created dependant upon certain values found in the original xml At present I have a sub which does this for me: ...
2
votes
1answer
689 views

Silverlight recursivly bind Treeview to XDocument

How can I recursivly bind a Treeview to an XDocument, mapping each XML Element to a Node in the Treeview? The code below should work from my perspective (and also according to the very few posts I ...
2
votes
2answers
2k views

Partially deserialize XML to Object

I have some XML that I deserialize into a business object. I am using XmlSerializer.Deserialize to do so. However, I want one of the XmlElement contained in the XML to stay an XElement. It cannot ...
2
votes
2answers
1k views

XElement and List<g>

I have a class that has the following properties: public class Author { public string FirstName { get; set; } public string LastName { get; set; } } Next, I have a List of Authors like so: ...

1 2 3 4 5