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.
should suffice to access the
Status
child element. If you want the value of that element as a string then do e.g.If
myXel
already is the ResponseXElement
then it would be:You need to use the LocalName to ignore namespaces.