I have an XElement
which has content like this.
XElement response = XElement.Load("file.xml"); // XElement.Parse(stringWithXmlGoesHere)
XNamespace df = response.Name.Namespace;
XElement status = response.Element(df + "Status");
should suffice to access the Status
child element.
If you want the value of that element as a string then do e.g.
string status = (string)response.Element(df + "Status");