私はXDocumentに解析されたXMLを持っている:私はそうエキスXdocument石鹸レスポンスボディ
<MyResponse xmlns="https://www.domain.net/">
<Node1>0</Node1>
</MyResponse>
としてそのルートを持つ新しい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>
本質的に私は石鹸の体からこれを抽出しようとしています。私は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