Click here to Skip to main content
Sign Up to vote bad
good
See more: C#3.0XMLLINQXPath
Hi,
I have an xml file which looks like following:
 
<ch>
<it>
<a></a>
<c:det id="1234" hosted="true" >
</it>
<it>...</it>
</ch>
Now, I am getting the the document as XElement.
I have to fetch the value of hosted attribute inside
<c:det>
node.
How acn I get that?
I tried using LocalName property,may be somehow was not able to figure out the exact Xpath value.
Can you please help me in either Xpath way or LINQ way?
Thanks in advance.
Posted 10 Sep '12 - 2:08
Edited 10 Sep '12 - 2:10


1 solution

does that inspires you?
 
		static void Main(string[] args)
		{
			string xml = @"<ch>
<it>
<a></a>
<det id=""1234"" hosted=""true""/>
</it>
<it>...</it>
</ch>";
			var xxml = XElement.Parse(xml);
 
			var list = from e in xxml.Descendants("det")
					   from attr in e.Attributes()
					   select new { Node = e, Attr = attr };
 
			foreach (var item in list)
				Console.WriteLine("{0}, {1}={2}", item.Node.Name.LocalName, item.Attr.Name.LocalName, item.Attr.Value);
		}
  Permalink  

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 564
1 CPallini 245
2 Mahesh Bailwal 239
3 Maciej Los 235
4 Aarti Meswania 208
0 Sergey Alexandrovich Kryukov 9,162
1 OriginalGriff 7,179
2 CPallini 3,913
3 Rohan Leuva 3,176
4 Maciej Los 2,588


Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 10 Sep 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid