我正在尝试读取 sharepoint 中文档的内容,并且我正在重用名为 cellstorage.csv/CellStorageService 的 Web 服务
响应是多部分的,包含一个 XML 部分和一个二进制部分。
我想阅读二进制部分。
内容类型为:
Content-Type: multipart/related; type="application/xop+xml"; boundary="urn:uuid:a192024b-547a-584b-a56c-b05f25c22fdf"; start="<1c830af4-214f-1c4b-8a71-6269053e3161@tempuri.org>"; start-Info="text/xml; charset=utf-8"
返回的内容是:
--uuid:acf0b1de-4e59-4304-ba6e-23a7a4e2a9cc+id=1
Content-ID: <http://tempuri.org/0>
Content-Transfer-Encoding: 8bit
Content-Type: application/xop+xml;charset=utf-8;type="text/xml"
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"><s:Body>
<ResponseVersion Version="2" MinorVersion="3"
xmlns="http://schemas.microsoft.com/sharepoint/soap/"/><ResponseCollection
WebUrl="
...
></SubResponse></Response></ResponseCollection></s:Body></s:Envelope>
--uuid:acf0b1de-4e59-4304-ba6e-23a7a4e2a9cc+id=1
Content-ID: <http://tempuri.org/1/636403683925268534>
Content-Transfer-Encoding: binary
Content-Type: application/octet-stream
因为我已经在这个项目中使用了 MimeKit,所以我尝试将它加载到 Mimekit 中,以便它可以解析它:
ContentType contentType1 = ContentType.Parse("application/xop+xml");
MimeEntity entity1 = MimeEntity.Load(contentType1, new MemoryStream(bytes));
ContentType contentType = ContentType.Parse("application/octet-stream");
MimeEntity entity = MimeEntity.Load(contentType, new MemoryStream(bytes));
MimeParser parser = new MimeParser(new MemoryStream(bytes), MimeFormat.Entity);
//var message = parser.ParseMessage();
var entity3 = parser.ParseEntity();
当我在调试器中查看结果时,3 个实体(entiy、entity1 和 entity3)看起来都一样,似乎只解析了 xml 内容。
我无法获得二进制部分。
您能否告诉我 MimeKit 是否可用于解析此类内容,以及我是否正确解析?
非常感谢
吉尔斯