我们使用第三方服务以 xop 格式返回附件作为 Web 服务响应,如下所示
<result>
<document-id>232</document-id>
<application-id>34343</application-id>
<document-type>CUSTOMER_UPLOADED</document-type>
<owner-id>434</owner-id>
<owner-type>CONSUMER</owner-type>
<file-name>abc.jpeg</file-name>
<content>
<xop:Include href="cid:d4fc646b-9172-43b1-afdc-dfd70ea13e66-1@cxf.apache.org" xmlns:xop="http://www.w3.org/2004/08/xop/include"/>
</content>
</result>
一旦我们得到响应,我们需要将文件转换为二进制并发送给对方。如何使用 C#.net 从上面的响应中下载文件。请问有什么指点吗?