我有被解析到一個XDocument XML:抽取的XDocument SOAP響應體內轉化爲新的XDocument
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<MyResponse xmlns="https://www.domain.net/">
<Node1>0</Node1>
</MyResponse>
</soap:Body>
</soap:Envelope>
基本上我想創建有其作爲
<MyResponse xmlns="https://www.domain.net/">
<Node1>0</Node1>
</MyResponse>
所以根新的XDocument本質上我試圖從肥皂身體中提取這個。我試着用Linq解析這個,但似乎無法返回一個新的XDocument與這個新的根。有任何想法嗎?
在此先感謝
'新的XDocument(old.Element(「{} http://schemas.xmlsoap.org/soap/envelope/ Envelope「).Element(」{http://schemas.xmlsoap.org/soap/envelope/}Body「).Element(」{https://www.domain.net/}MyResponse「))' – PetSerAl