Click here to Skip to main content
15,888,527 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hi,
I have an xml file which looks like following:

HTML
<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
HTML
<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
Updated 10-Sep-12 2:10am
v2

1 solution

does that inspires you?

C#
		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);
		}
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900