I have an XElement
which has content like this.
<Response xmlns="someurl" xmlnsLi="thew3url">
<ErrorCode></ErrorCode>
<Status>Success</Status>
<Result>
<Manufacturer>
<ManufacturerID>46</ManufacturerID>
<ManufacturerName>APPLE</ManufacturerName>
</Manufacturer>
//More Manufacturer Elements like above here
</Result>
</Response>
How will i read the Value inside Status
element ?
I tried XElement stats = myXel.Descendants("Status").SingleOrDefault();
But that is returning null.
If myXel
already is the Response XElement
then it would be:
var status = myXel.Elements().Where(e => e.Name.LocalName == "Status").Single().Value;
You need to use the LocalName to ignore namespaces.