从 NuGet OData 源查找下载 URL
给定 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
< content type="application/zip" src="SOME-URL" />
< content type="application/zip" src="SOME-URL" />
在
节点下,查找包含 2 个属性type
和的
节点源代码
。src
属性包含下载 URL。您可以使用 LINQ to XML 来获取它。看起来很容易,对吧?哦,记得在使用 LINQ to XML 查询节点时将XNamespace
附加到XName
中。Under the
<entry/>
node, look for a<content/>
node which contains 2 attributestype
andsrc
. Thesrc
attribute contains the download url. You could use LINQ to XML to get it. Seems easy, right? Oh, and remember to append anXNamespace
to theXName
when using LINQ to XML to query the nodes.