从 NuGet OData 源查找下载 URL

发布于 2024-11-05 12:08:18 字数 53 浏览 2 评论 0原文

给定 OData 数据集中的 Packages 表中的条目,派生下载 URL 的技巧是什么?

What's the trick for deriving a download URL given an entry in the Packages table in the OData data set?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

锦上情书 2024-11-12 12:08:18

< content type="application/zip" src="SOME-URL" />

< content type="application/zip" src="SOME-URL" />

爱要勇敢去追 2024-11-12 12:08:18

节点下,查找包含 2 个属性 type节点源代码src 属性包含下载 URL。您可以使用 LINQ to XML 来获取它。看起来很容易,对吧?哦,记得在使用 LINQ to XML 查询节点时将 XNamespace 附加到 XName 中。

Under the <entry/> node, look for a <content/> node which contains 2 attributes type and src. The src attribute contains the download url. You could use LINQ to XML to get it. Seems easy, right? Oh, and remember to append an XNamespace to the XName when using LINQ to XML to query the nodes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文